saverproto.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: saverproto.h,v 1.5 94/04/17 20:59:33 keith Exp $
  3.  *
  4. Copyright (c) 1992  X Consortium
  5. Permission is hereby granted, free of charge, to any person obtaining a copy
  6. of this software and associated documentation files (the "Software"), to deal
  7. in the Software without restriction, including without limitation the rights
  8. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. copies of the Software, and to permit persons to whom the Software is
  10. furnished to do so, subject to the following conditions:
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  16. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  17. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  18. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. Except as contained in this notice, the name of the X Consortium shall not be
  20. used in advertising or otherwise to promote the sale, use or other dealings
  21. in this Software without prior written authorization from the X Consortium.
  22.  *
  23.  * Author:  Keith Packard, MIT X Consortium
  24.  */
  25. /* $XFree86$ */
  26. #ifndef _SAVERPROTO_H_
  27. #define _SAVERPROTO_H_
  28. #include <X11/extensions/saver.h>
  29. #define Window CARD32
  30. #define Drawable CARD32
  31. #define Font CARD32
  32. #define Pixmap CARD32
  33. #define Cursor CARD32
  34. #define Colormap CARD32
  35. #define GContext CARD32
  36. #define Atom CARD32
  37. #define VisualID CARD32
  38. #define Time CARD32
  39. #define KeyCode CARD8
  40. #define KeySym CARD32
  41. #define X_ScreenSaverQueryVersion   0
  42. typedef struct _ScreenSaverQueryVersion {
  43.     CARD8 reqType; /* always ScreenSaverReqCode */
  44.     CARD8 saverReqType; /* always X_ScreenSaverQueryVersion */
  45.     CARD16 length B16;
  46.     CARD8 clientMajor;
  47.     CARD8 clientMinor;
  48.     CARD16 unused B16;
  49. } xScreenSaverQueryVersionReq;
  50. #define sz_xScreenSaverQueryVersionReq 8
  51. typedef struct {
  52.     CARD8 type; /* X_Reply */
  53.     CARD8 unused; /* not used */
  54.     CARD16 sequenceNumber B16;
  55.     CARD32 length B32;
  56.     CARD16 majorVersion B16; /* major version of protocol */
  57.     CARD16 minorVersion B16; /* minor version of protocol */
  58.     CARD32 pad0 B32;
  59.     CARD32 pad1 B32;
  60.     CARD32 pad2 B32;
  61.     CARD32 pad3 B32;
  62.     CARD32 pad4 B32;
  63. } xScreenSaverQueryVersionReply;
  64. #define sz_xScreenSaverQueryVersionReply 32
  65. #define X_ScreenSaverQueryInfo   1
  66. typedef struct _ScreenSaverQueryInfo {
  67.     CARD8 reqType; /* always ScreenSaverReqCode */
  68.     CARD8 saverReqType; /* always X_ScreenSaverQueryInfo */
  69.     CARD16 length B16;
  70.     Drawable drawable B32;
  71. } xScreenSaverQueryInfoReq;
  72. #define sz_xScreenSaverQueryInfoReq 8
  73. typedef struct {
  74.     CARD8 type; /* X_Reply */
  75.     BYTE state; /* Off, On */
  76.     CARD16 sequenceNumber B16;
  77.     CARD32 length B32;
  78.     Window window B32;
  79.     CARD32 tilOrSince B32;
  80.     CARD32 idle B32;
  81.     CARD32 eventMask B32;
  82.     BYTE kind; /* Blanked, Internal, External */
  83.     CARD8 pad0;
  84.     CARD16 pad1 B16;
  85.     CARD32 pad2 B32;
  86. } xScreenSaverQueryInfoReply;
  87. #define sz_xScreenSaverQueryInfoReply 32
  88. #define X_ScreenSaverSelectInput   2
  89. typedef struct _ScreenSaverSelectInput {
  90.     CARD8 reqType; /* always ScreenSaverReqCode */
  91.     CARD8 saverReqType; /* always X_ScreenSaverSelectInput */
  92.     CARD16 length B16;
  93.     Drawable drawable B32;
  94.     CARD32 eventMask B32;
  95. } xScreenSaverSelectInputReq;
  96. #define sz_xScreenSaverSelectInputReq 12
  97. #define X_ScreenSaverSetAttributes   3
  98. typedef struct _ScreenSaverSetAttributes {
  99.     CARD8 reqType; /* always ScreenSaverReqCode */
  100.     CARD8 saverReqType; /* always X_ScreenSaverSetAttributes */
  101.     CARD16 length B16;
  102.     Drawable drawable B32;
  103.     INT16 x B16, y B16;
  104.     CARD16 width B16, height B16, borderWidth B16;
  105.     BYTE c_class;
  106.     CARD8 depth;
  107.     VisualID visualID B32;
  108.     CARD32 mask B32;
  109. } xScreenSaverSetAttributesReq;
  110. #define sz_xScreenSaverSetAttributesReq 28
  111. #define X_ScreenSaverUnsetAttributes   4
  112. typedef struct _ScreenSaverUnsetAttributes {
  113.     CARD8 reqType; /* always ScreenSaverReqCode */
  114.     CARD8 saverReqType; /* always X_ScreenSaverUnsetAttributes */
  115.     CARD16 length B16;
  116.     Drawable drawable B32;
  117. } xScreenSaverUnsetAttributesReq;
  118. #define sz_xScreenSaverUnsetAttributesReq 8
  119. #define X_ScreenSaverSuspend   5
  120. typedef struct _ScreenSaverSuspend {
  121.     CARD8 reqType;
  122.     CARD8 saverReqType;
  123.     CARD16 length B16;
  124.     Bool suspend B32;
  125. } xScreenSaverSuspendReq;
  126. #define sz_xScreenSaverSuspendReq 8
  127. typedef struct _ScreenSaverNotify {
  128.     CARD8 type; /* always eventBase + ScreenSaverNotify */
  129.     BYTE state; /* off, on, cycle */
  130.     CARD16 sequenceNumber B16;
  131.     Time timestamp B32;
  132.     Window root B32;
  133.     Window window B32; /* screen saver window */
  134.     BYTE kind; /* blanked, internal, external */
  135.     BYTE forced;
  136.     CARD16 pad0 B16;
  137.     CARD32 pad1 B32;
  138.     CARD32 pad2 B32;
  139.     CARD32 pad3 B32;
  140. } xScreenSaverNotifyEvent;
  141. #define sz_xScreenSaverNotifyEvent 32
  142. #undef Window
  143. #undef Drawable
  144. #undef Font
  145. #undef Pixmap
  146. #undef Cursor
  147. #undef Colormap
  148. #undef GContext
  149. #undef Atom
  150. #undef VisualID
  151. #undef Time
  152. #undef KeyCode
  153. #undef KeySym
  154. #endif /* _SAVERPROTO_H_ */