X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fx11%2Ffg_internal_x11.h;h=09a238a76925a40ebde87714d6e2def77326fb48;hb=002dae879eda329f38fe65cb6f99d4f481a2eb47;hp=2a3020f54021f13f9314df449ea68f730201b4b7;hpb=99d53f15a4216240088132f6af9cb194b519b1cc;p=freeglut diff --git a/src/x11/fg_internal_x11.h b/src/x11/fg_internal_x11.h index 2a3020f..09a238a 100644 --- a/src/x11/fg_internal_x11.h +++ b/src/x11/fg_internal_x11.h @@ -1,5 +1,5 @@ /* - * freeglut_internal_x11.h + * fg_internal_x11.h * * The freeglut library private include file. * @@ -49,7 +49,7 @@ /* -- GLOBAL TYPE DEFINITIONS ---------------------------------------------- */ -/* The structure used by display initialization in freeglut_init.c */ +/* The structure used by display initialization in fg_init.c */ typedef struct tagSFG_PlatformDisplay SFG_PlatformDisplay; struct tagSFG_PlatformDisplay { @@ -60,6 +60,9 @@ struct tagSFG_PlatformDisplay Atom DeleteWindow; /* The window deletion atom */ Atom State; /* The state atom */ Atom StateFullScreen; /* The full screen atom */ + int NetWMSupported; /* Flag for EWMH Window Managers */ + Atom NetWMPid; /* The _NET_WM_PID atom */ + Atom ClientMachine; /* The client machine name atom */ #ifdef HAVE_X11_EXTENSIONS_XRANDR_H int prev_xsz, prev_ysz; @@ -119,7 +122,7 @@ struct tagSFG_PlatformWindowState /* -- JOYSTICK-SPECIFIC STRUCTURES AND TYPES ------------------------------- */ /* - * Initial defines from "js.h" starting around line 33 with the existing "freeglut_joystick.c" + * Initial defines from "js.h" starting around line 33 with the existing "fg_joystick.c" * interspersed */ # ifdef HAVE_SYS_IOCTL_H @@ -128,10 +131,10 @@ struct tagSFG_PlatformWindowState # ifdef HAVE_FCNTL_H # include # endif -# ifdef HAVE_ERRNO_H -# include -# include -# endif + +#include +#include + # if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) /* XXX The below hack is done until freeglut's autoconf is updated. */ # define HAVE_USB_JS 1 @@ -217,12 +220,12 @@ struct tagSFG_PlatformJoystick /* -- PRIVATE FUNCTION DECLARATIONS ---------------------------------------- */ -/* spaceball device functions, defined in freeglut_spaceball.c */ +/* spaceball device functions, defined in fg_spaceball.c */ int fgIsSpaceballXEvent( const XEvent *ev ); void fgSpaceballHandleXEvent( const XEvent *ev ); /* - * Check if "hint" is present in "property" for "window". See freeglut_init.c + * Check if "hint" is present in "property" for "window". See fg_init.c */ int fgHintPresent(Window window, Atom property, Atom hint);