extutil.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:7k
源码类别:

流媒体/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. #if NeedNestedPrototypes
  53.       Display* /* display */,
  54.       GC /* gc */,
  55.       XExtCodes* /* codes */
  56. #endif
  57. );
  58.     int (*copy_gc)(
  59. #if NeedNestedPrototypes
  60.       Display* /* display */,
  61.               GC /* gc */,
  62.               XExtCodes* /* codes */
  63. #endif
  64. );
  65.     int (*flush_gc)(
  66. #if NeedNestedPrototypes
  67.       Display* /* display */,
  68.               GC /* gc */,
  69.               XExtCodes* /* codes */
  70. #endif
  71. );
  72.     int (*free_gc)(
  73. #if NeedNestedPrototypes
  74.       Display* /* display */,
  75.               GC /* gc */,
  76.               XExtCodes* /* codes */
  77. #endif
  78. );
  79.     int (*create_font)(
  80. #if NeedNestedPrototypes
  81.       Display* /* display */,
  82.               XFontStruct* /* fs */,
  83.               XExtCodes* /* codes */
  84. #endif
  85. );
  86.     int (*free_font)(
  87. #if NeedNestedPrototypes
  88.       Display* /* display */,
  89.               XFontStruct* /* fs */,
  90.               XExtCodes* /* codes */
  91. #endif
  92. );
  93.     int (*close_display)(
  94. #if NeedNestedPrototypes
  95.       Display* /* display */,
  96.               XExtCodes* /* codes */
  97. #endif
  98. );
  99.     Bool (*wire_to_event)(
  100. #if NeedNestedPrototypes
  101.        Display* /* display */,
  102.                XEvent* /* re */,
  103.                xEvent* /* event */
  104. #endif
  105. );
  106.     Status (*event_to_wire)(
  107. #if NeedNestedPrototypes
  108.       Display* /* display */,
  109.               XEvent* /* re */,
  110.               xEvent* /* event */
  111. #endif
  112. );
  113.     int (*error)(
  114. #if NeedNestedPrototypes
  115.       Display* /* display */,
  116.               xError* /* err */,
  117.               XExtCodes* /* codes */,
  118.               int* /* ret_code */
  119. #endif
  120. );
  121.     char *(*error_string)(
  122. #if NeedNestedPrototypes
  123.         Display* /* display */,
  124.                 int /* code */,
  125.                 XExtCodes* /* codes */,
  126.                 char* /* buffer */,
  127.                 int /* nbytes */
  128. #endif
  129. );
  130. } XExtensionHooks;
  131. extern XExtensionInfo *XextCreateExtension(
  132. #if NeedFunctionPrototypes
  133.     void
  134. #endif
  135. );
  136. extern void XextDestroyExtension(
  137. #if NeedFunctionPrototypes
  138.     XExtensionInfo* /* info */
  139. #endif
  140. );
  141. extern XExtDisplayInfo *XextAddDisplay(
  142. #if NeedFunctionPrototypes
  143.     XExtensionInfo* /* extinfo */,
  144.     Display* /* dpy */,
  145.     char* /* ext_name */,
  146.     XExtensionHooks* /* hooks */,
  147.     int /* nevents */,
  148.     XPointer /* data */
  149. #endif
  150. );
  151. extern int XextRemoveDisplay(
  152. #if NeedFunctionPrototypes
  153.     XExtensionInfo* /* extinfo */,
  154.     Display* /* dpy */
  155. #endif
  156. );
  157. extern XExtDisplayInfo *XextFindDisplay(
  158. #if NeedFunctionPrototypes
  159.     XExtensionInfo* /* extinfo */,
  160.     Display* /* dpy */
  161. #endif
  162. );
  163. #define XextHasExtension(i) ((i) && ((i)->codes))
  164. #define XextCheckExtension(dpy,i,name,val) 
  165.   if (!XextHasExtension(i)) { XMissingExtension (dpy, name); return val; }
  166. #define XextSimpleCheckExtension(dpy,i,name) 
  167.   if (!XextHasExtension(i)) { XMissingExtension (dpy, name); return; }
  168. /*
  169.  * helper macros to generate code that is common to all extensions; caller
  170.  * should prefix it with static if extension source is in one file; this
  171.  * could be a utility function, but have to stack 6 unused arguments for 
  172.  * something that is called many, many times would be bad.
  173.  */
  174. #define XEXT_GENERATE_FIND_DISPLAY(proc,extinfo,extname,hooks,nev,data) 
  175. XExtDisplayInfo *proc (Display *dpy) 
  176.     XExtDisplayInfo *dpyinfo; 
  177.     if (!extinfo) { if (!(extinfo = XextCreateExtension())) return NULL; } 
  178.     if (!(dpyinfo = XextFindDisplay (extinfo, dpy))) 
  179.       dpyinfo = XextAddDisplay (extinfo,dpy,extname,hooks,nev,data); 
  180.     return dpyinfo; 
  181. }
  182. #define XEXT_FIND_DISPLAY_PROTO(proc) 
  183. XExtDisplayInfo *proc(Display *dpy)
  184. #define XEXT_GENERATE_CLOSE_DISPLAY(proc,extinfo) 
  185. int proc (Display *dpy, XExtCodes *codes) 
  186.     return XextRemoveDisplay (extinfo, dpy); 
  187. }
  188. #define XEXT_CLOSE_DISPLAY_PROTO(proc) 
  189. int proc(Display *dpy, XExtCodes *codes)
  190. #define XEXT_GENERATE_ERROR_STRING(proc,extname,nerr,errl) 
  191. char *proc (Display *dpy, int code, XExtCodes *codes, char *buf, int n) 
  192. {  
  193.     code -= codes->first_error;  
  194.     if (code >= 0 && code < nerr) { 
  195. char tmp[256]; 
  196. sprintf (tmp, "%s.%d", extname, code); 
  197. XGetErrorDatabaseText (dpy, "XProtoError", tmp, errl[code], buf, n); 
  198. return buf; 
  199.     } 
  200.     return (char *)0; 
  201. }
  202. #define XEXT_ERROR_STRING_PROTO(proc) 
  203. char *proc(Display *dpy, int code, XExtCodes *codes, char *buf, int n)
  204. #endif