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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: extutil.h,v 1.4 2001/02/09 02:03:24 xorgcvs Exp $
  3.  *
  4. Copyright 1989, 1998  The Open Group
  5. Permission to use, copy, modify, distribute, and sell this software and its
  6. documentation for any purpose is hereby granted without fee, provided that
  7. the above copyright notice appear in all copies and that both that
  8. copyright notice and this permission notice appear in supporting
  9. documentation.
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from The Open Group.
  21.  *
  22.  * Author:  Jim Fulton, MIT The Open Group
  23.  * 
  24.  *                     Xlib Extension-Writing Utilities
  25.  *
  26.  * This package contains utilities for writing the client API for various
  27.  * protocol extensions.  THESE INTERFACES ARE NOT PART OF THE X STANDARD AND
  28.  * ARE SUBJECT TO CHANGE!
  29.  */
  30. /* $XFree86: xc/include/extensions/extutil.h,v 1.9 2001/12/14 19:53:28 dawes Exp $ */
  31. #ifndef _EXTUTIL_H_
  32. #define _EXTUTIL_H_
  33. #include <X11/extensions/Xext.h>
  34. /*
  35.  * We need to keep a list of open displays since the Xlib display list isn't
  36.  * public.  We also have to per-display info in a separate block since it isn't
  37.  * stored directly in the Display structure.
  38.  */
  39. typedef struct _XExtDisplayInfo {
  40.     struct _XExtDisplayInfo *next; /* keep a linked list */
  41.     Display *display; /* which display this is */
  42.     XExtCodes *codes; /* the extension protocol codes */
  43.     XPointer data; /* extra data for extension to use */
  44. } XExtDisplayInfo;
  45. typedef struct _XExtensionInfo {
  46.     XExtDisplayInfo *head; /* start of list */
  47.     XExtDisplayInfo *cur; /* most recently used */
  48.     int ndisplays; /* number of displays */
  49. } XExtensionInfo;
  50. typedef struct _XExtensionHooks {
  51.     int (*create_gc)(
  52.       Display* /* display */,
  53.       GC /* gc */,
  54.       XExtCodes* /* codes */
  55. );
  56.     int (*copy_gc)(
  57.       Display* /* display */,
  58.               GC /* gc */,
  59.               XExtCodes* /* codes */
  60. );
  61.     int (*flush_gc)(
  62.       Display* /* display */,
  63.               GC /* gc */,
  64.               XExtCodes* /* codes */
  65. );
  66.     int (*free_gc)(
  67.       Display* /* display */,
  68.               GC /* gc */,
  69.               XExtCodes* /* codes */
  70. );
  71.     int (*create_font)(
  72.       Display* /* display */,
  73.               XFontStruct* /* fs */,
  74.               XExtCodes* /* codes */
  75. );
  76.     int (*free_font)(
  77.       Display* /* display */,
  78.               XFontStruct* /* fs */,
  79.               XExtCodes* /* codes */
  80. );
  81.     int (*close_display)(
  82.       Display* /* display */,
  83.               XExtCodes* /* codes */
  84. );
  85.     Bool (*wire_to_event)(
  86.        Display* /* display */,
  87.                XEvent* /* re */,
  88.                xEvent* /* event */
  89. );
  90.     Status (*event_to_wire)(
  91.       Display* /* display */,
  92.               XEvent* /* re */,
  93.               xEvent* /* event */
  94. );
  95.     int (*error)(
  96.       Display* /* display */,
  97.               xError* /* err */,
  98.               XExtCodes* /* codes */,
  99.               int* /* ret_code */
  100. );
  101.     char *(*error_string)(
  102.         Display* /* display */,
  103.                 int /* code */,
  104.                 XExtCodes* /* codes */,
  105.                 char* /* buffer */,
  106.                 int /* nbytes */
  107. );
  108. } XExtensionHooks;
  109. extern XExtensionInfo *XextCreateExtension(
  110.     void
  111. );
  112. extern void XextDestroyExtension(
  113.     XExtensionInfo* /* info */
  114. );
  115. extern XExtDisplayInfo *XextAddDisplay(
  116.     XExtensionInfo* /* extinfo */,
  117.     Display* /* dpy */,
  118.     char* /* ext_name */,
  119.     XExtensionHooks* /* hooks */,
  120.     int /* nevents */,
  121.     XPointer /* data */
  122. );
  123. extern int XextRemoveDisplay(
  124.     XExtensionInfo* /* extinfo */,
  125.     Display* /* dpy */
  126. );
  127. extern XExtDisplayInfo *XextFindDisplay(
  128.     XExtensionInfo* /* extinfo */,
  129.     Display* /* dpy */
  130. );
  131. #define XextHasExtension(i) ((i) && ((i)->codes))
  132. #define XextCheckExtension(dpy,i,name,val) 
  133.   if (!XextHasExtension(i)) { XMissingExtension (dpy, name); return val; }
  134. #define XextSimpleCheckExtension(dpy,i,name) 
  135.   if (!XextHasExtension(i)) { XMissingExtension (dpy, name); return; }
  136. /*
  137.  * helper macros to generate code that is common to all extensions; caller
  138.  * should prefix it with static if extension source is in one file; this
  139.  * could be a utility function, but have to stack 6 unused arguments for 
  140.  * something that is called many, many times would be bad.
  141.  */
  142. #define XEXT_GENERATE_FIND_DISPLAY(proc,extinfo,extname,hooks,nev,data) 
  143. XExtDisplayInfo *proc (Display *dpy) 
  144.     XExtDisplayInfo *dpyinfo; 
  145.     if (!extinfo) { if (!(extinfo = XextCreateExtension())) return NULL; } 
  146.     if (!(dpyinfo = XextFindDisplay (extinfo, dpy))) 
  147.       dpyinfo = XextAddDisplay (extinfo,dpy,extname,hooks,nev,data); 
  148.     return dpyinfo; 
  149. }
  150. #define XEXT_FIND_DISPLAY_PROTO(proc) 
  151. XExtDisplayInfo *proc(Display *dpy)
  152. #define XEXT_GENERATE_CLOSE_DISPLAY(proc,extinfo) 
  153. int proc (Display *dpy, XExtCodes *codes) 
  154.     return XextRemoveDisplay (extinfo, dpy); 
  155. }
  156. #define XEXT_CLOSE_DISPLAY_PROTO(proc) 
  157. int proc(Display *dpy, XExtCodes *codes)
  158. #define XEXT_GENERATE_ERROR_STRING(proc,extname,nerr,errl) 
  159. char *proc (Display *dpy, int code, XExtCodes *codes, char *buf, int n) 
  160. {  
  161.     code -= codes->first_error;  
  162.     if (code >= 0 && code < nerr) { 
  163. char tmp[256]; 
  164. sprintf (tmp, "%s.%d", extname, code); 
  165. XGetErrorDatabaseText (dpy, "XProtoError", tmp, errl[code], buf, n); 
  166. return buf; 
  167.     } 
  168.     return (char *)0; 
  169. }
  170. #define XEXT_ERROR_STRING_PROTO(proc) 
  171. char *proc(Display *dpy, int code, XExtCodes *codes, char *buf, int n)
  172. #endif