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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XFree86: xc/include/extensions/Xag.h,v 1.5 2001/12/17 20:52:24 dawes Exp $ */
  2. /*
  3. Copyright 1996, 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
  10. in all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  12. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  13. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  14. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
  15. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  16. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  17. OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall
  19. not be used in advertising or otherwise to promote the sale, use or
  20. other dealings in this Software without prior written authorization
  21. from The Open Group.
  22. */
  23. /* $Xorg: Xag.h,v 1.5 2001/02/09 02:03:24 xorgcvs Exp $ */
  24. #ifndef _XAG_H_
  25. #define _XAG_H_
  26. #include <X11/Xfuncproto.h>
  27. #define X_XagQueryVersion 0
  28. #define X_XagCreate 1
  29. #define X_XagDestroy 2
  30. #define X_XagGetAttr 3
  31. #define X_XagQuery 4
  32. #define X_XagCreateAssoc 5
  33. #define X_XagDestroyAssoc 6
  34. #define XagBadAppGroup 0
  35. #define XagNumberErrors (XagBadAppGroup + 1)
  36. #define XagNsingleScreen 7
  37. #define XagNdefaultRoot 1
  38. #define XagNrootVisual 2
  39. #define XagNdefaultColormap 3
  40. #define XagNblackPixel 4
  41. #define XagNwhitePixel 5
  42. #define XagNappGroupLeader 6
  43. #ifndef _XAG_SERVER_
  44. #include <stdarg.h>
  45. _XFUNCPROTOBEGIN
  46. typedef XID XAppGroup;
  47. Bool XagQueryVersion(
  48.     Display* /* dpy */,
  49.     int* /* major_version */,
  50.     int* /* minor_version */
  51. );
  52. Status XagCreateEmbeddedApplicationGroup(
  53.     Display* /* dpy */,
  54.     VisualID /* root_visual */,
  55.     Colormap /* default_colormap */,
  56.     unsigned long /* black_pixel */,
  57.     unsigned long /* white_pixel */,
  58.     XAppGroup* /* app_group_return */
  59. );
  60. Status XagCreateNonembeddedApplicationGroup(
  61.     Display* /* dpy */,
  62.     XAppGroup* /* app_group_return */
  63. );
  64. Status XagDestroyApplicationGroup(
  65.     Display* /* dpy */,
  66.     XAppGroup /* app_group */
  67. );
  68. Status XagGetApplicationGroupAttributes(
  69.     Display* /* dpy */,
  70.     XAppGroup /* app_group */,
  71.     ...
  72. );
  73. Status XagQueryApplicationGroup(
  74.     Display* /* dpy */,
  75.     XID /* resource_base */,
  76.     XAppGroup* /* app_group_ret */
  77. );
  78. Status XagCreateAssociation(
  79.     Display* /* dpy */,
  80.     Window* /* window_ret */,
  81.     void* /* system_window */
  82. );
  83. Status XagDestroyAssociation(
  84.     Display* /* dpy */,
  85.     Window /* window */
  86. );
  87. _XFUNCPROTOEND
  88. #endif /* _XAG_SERVER_ */
  89. #endif /* _XAG_H_ */