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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XFree86$ */
  2. /************************************************************
  3. Copyright 1989, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. ********************************************************/
  21. /* RANDOM CRUFT! THIS HAS NO OFFICIAL X CONSORTIUM OR X PROJECT TEAM BLESSING */
  22. /* $Xorg: mitmiscstr.h,v 1.4 2001/02/09 02:03:24 xorgcvs Exp $ */
  23. #ifndef _MITMISCSTR_H_
  24. #define _MITMISCSTR_H_
  25. #include "MITMisc.h"
  26. #define MITMISCNAME "MIT-SUNDRY-NONSTANDARD"
  27. typedef struct _SetBugMode {
  28.     CARD8 reqType; /* always MITReqCode */
  29.     CARD8 mitReqType; /* always X_MITSetBugMode */
  30.     CARD16 length B16;
  31.     BOOL onOff;
  32.     BYTE pad0;
  33.     CARD16 pad1;
  34. } xMITSetBugModeReq;
  35. #define sz_xMITSetBugModeReq 8
  36. typedef struct _GetBugMode {
  37.     CARD8 reqType; /* always MITReqCode */
  38.     CARD8 mitReqType; /* always X_MITGetBugMode */
  39.     CARD16 length B16;
  40. } xMITGetBugModeReq;
  41. #define sz_xMITGetBugModeReq 4
  42. typedef struct {
  43.     BYTE type; /* X_Reply */
  44.     BOOL onOff;
  45.     CARD16 sequenceNumber B16;
  46.     CARD32 length B32;
  47.     CARD32 pad0 B32;
  48.     CARD32 pad1 B32;
  49.     CARD32 pad2 B32;
  50.     CARD32 pad3 B32;
  51.     CARD32 pad4 B32;
  52.     CARD32 pad5 B32;
  53. } xMITGetBugModeReply;
  54. #define sz_xMITGetBugModeReply 32
  55. #endif /* _MITMISCSTR_H_ */