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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XFree86: xc/include/extensions/XShm.h,v 1.11 2003/04/03 15:11:07 dawes Exp $ */
  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. /* THIS IS NOT AN X CONSORTIUM STANDARD OR AN X PROJECT TEAM SPECIFICATION */
  22. /* $Xorg: XShm.h,v 1.4 2001/02/09 02:03:24 xorgcvs Exp $ */
  23. #ifndef _XSHM_H_
  24. #define _XSHM_H_
  25. #include <X11/Xfuncproto.h>
  26. #define X_ShmQueryVersion 0
  27. #define X_ShmAttach 1
  28. #define X_ShmDetach 2
  29. #define X_ShmPutImage 3
  30. #define X_ShmGetImage 4
  31. #define X_ShmCreatePixmap 5
  32. #define ShmCompletion 0
  33. #define ShmNumberEvents (ShmCompletion + 1)
  34. #define BadShmSeg 0
  35. #define ShmNumberErrors (BadShmSeg + 1)
  36. typedef unsigned long ShmSeg;
  37. #ifndef _XSHM_SERVER_
  38. typedef struct {
  39.     int type;     /* of event */
  40.     unsigned long serial;   /* # of last request processed by server */
  41.     Bool send_event;     /* true if this came frome a SendEvent request */
  42.     Display *display;     /* Display the event was read from */
  43.     Drawable drawable;     /* drawable of request */
  44.     int major_code;     /* ShmReqCode */
  45.     int minor_code;     /* X_ShmPutImage */
  46.     ShmSeg shmseg;     /* the ShmSeg used in the request */
  47.     unsigned long offset;   /* the offset into ShmSeg used in the request */
  48. } XShmCompletionEvent;
  49. typedef struct {
  50.     ShmSeg shmseg; /* resource id */
  51.     int shmid; /* kernel id */
  52.     char *shmaddr; /* address in client */
  53.     Bool readOnly; /* how the server should attach it */
  54. } XShmSegmentInfo;
  55. _XFUNCPROTOBEGIN
  56. Bool XShmQueryExtension(
  57.     Display* /* dpy */
  58. );
  59. int XShmGetEventBase(
  60.     Display*  /* dpy */
  61. );
  62. Bool XShmQueryVersion(
  63.     Display* /* dpy */,
  64.     int* /* majorVersion */,
  65.     int* /* minorVersion */,
  66.     Bool* /* sharedPixmaps */
  67. );
  68. int XShmPixmapFormat(
  69.     Display* /* dpy */
  70. );
  71. Status XShmAttach(
  72.     Display* /* dpy */,
  73.     XShmSegmentInfo* /* shminfo */
  74. );
  75. Status XShmDetach(
  76.     Display* /* dpy */,
  77.     XShmSegmentInfo* /* shminfo */
  78. );
  79. Status XShmPutImage(
  80.     Display* /* dpy */,
  81.     Drawable /* d */,
  82.     GC /* gc */,
  83.     XImage* /* image */,
  84.     int /* src_x */,
  85.     int /* src_y */,
  86.     int /* dst_x */,
  87.     int /* dst_y */,
  88.     unsigned int /* src_width */,
  89.     unsigned int /* src_height */,
  90.     Bool /* send_event */
  91. );
  92. Status XShmGetImage(
  93.     Display* /* dpy */,
  94.     Drawable /* d */,
  95.     XImage* /* image */,
  96.     int /* x */,
  97.     int /* y */,
  98.     unsigned long /* plane_mask */
  99. );
  100. XImage *XShmCreateImage(
  101.     Display* /* dpy */,
  102.     Visual* /* visual */,
  103.     unsigned int /* depth */,
  104.     int /* format */,
  105.     char* /* data */,
  106.     XShmSegmentInfo* /* shminfo */,
  107.     unsigned int /* width */,
  108.     unsigned int /* height */
  109. );
  110. Pixmap XShmCreatePixmap(
  111.     Display* /* dpy */,
  112.     Drawable /* d */,
  113.     char* /* data */,
  114.     XShmSegmentInfo* /* shminfo */,
  115.     unsigned int /* width */,
  116.     unsigned int /* height */,
  117.     unsigned int /* depth */
  118. );
  119. _XFUNCPROTOEND
  120. #else /* _XSHM_SERVER_ */
  121. #include "screenint.h"
  122. #include "pixmap.h"
  123. #include "gc.h"
  124. extern void ShmRegisterFbFuncs(
  125.     ScreenPtr /* pScreen */
  126. );
  127. #endif
  128. #endif