diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 16:48:43 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 16:48:43 +0000 |
commit | 0280e9a705e5ef149124700131e826f4706318dd (patch) | |
tree | bdcca34cf78d853d5eccdec04be2cdbe4e510544 /panoramiXproto.h | |
parent | 319abb7b20ca59f1ed311fd973650d281bd69229 (diff) |
XFree86 4.3.0.1
Diffstat (limited to 'panoramiXproto.h')
-rw-r--r-- | panoramiXproto.h | 58 |
1 files changed, 53 insertions, 5 deletions
diff --git a/panoramiXproto.h b/panoramiXproto.h index 0547a26..fe3826e 100644 --- a/panoramiXproto.h +++ b/panoramiXproto.h @@ -23,6 +23,7 @@ shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from Digital Equipment Corporation. ******************************************************************/ +/* $XFree86: xc/include/extensions/panoramiXproto.h,v 3.6 2001/01/17 17:53:22 dawes Exp $ */ /* THIS IS NOT AN X PROJECT TEAM SPECIFICATION */ @@ -36,6 +37,9 @@ Equipment Corporation. #define X_PanoramiXGetScreenCount 2 #define X_PanoramiXGetScreenSize 3 +#define X_XineramaIsActive 4 +#define X_XineramaQueryScreens 5 + typedef struct _PanoramiXQueryVersion { CARD8 reqType; /* always PanoramiXReqCode */ CARD8 panoramiXReqType; /* always X_PanoramiXQueryVersion */ @@ -132,13 +136,57 @@ typedef struct { } xPanoramiXGetScreenSizeReply; #define sz_panoramiXGetScreenSizeReply 32 -/* define any errors specific to this extension */ +/************ Alternate protocol ******************/ -/* If a client asks for ScreenCount when PanoramiX - is not in use */ +typedef struct { + CARD8 reqType; + CARD8 panoramiXReqType; + CARD16 length B16; +} xXineramaIsActiveReq; +#define sz_xXineramaIsActiveReq 4 + +typedef struct { + BYTE type; + CARD8 pad1; + CARD16 sequenceNumber B16; + CARD32 length B32; + CARD32 state B32; + CARD32 pad2 B32; + CARD32 pad3 B32; + CARD32 pad4 B32; + CARD32 pad5 B32; + CARD32 pad6 B32; +} xXineramaIsActiveReply; +#define sz_XineramaIsActiveReply 32 -/* If a client asks for Screen Size of a screen when - PanoramiX is not in use */ +typedef struct { + CARD8 reqType; + CARD8 panoramiXReqType; + CARD16 length B16; +} xXineramaQueryScreensReq; +#define sz_xXineramaQueryScreensReq 4 + +typedef struct { + BYTE type; + CARD8 pad1; + CARD16 sequenceNumber B16; + CARD32 length B32; + CARD32 number B32; + CARD32 pad2 B32; + CARD32 pad3 B32; + CARD32 pad4 B32; + CARD32 pad5 B32; + CARD32 pad6 B32; +} xXineramaQueryScreensReply; +#define sz_XineramaQueryScreensReply 32 + +typedef struct { + INT16 x_org B16; + INT16 y_org B16; + CARD16 width B16; + CARD16 height B16; +} xXineramaScreenInfo; +#define sz_XineramaScreenInfo 8 #endif |