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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: Atoms.h,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */
  2. /* 
  3. Copyright 1988, 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. /* $XFree86: xc/lib/Xmu/Atoms.h,v 1.6 2001/01/17 19:42:53 dawes Exp $ */
  22. /*
  23.  * The interfaces described by this header file are for miscellaneous utilities
  24.  * and are not part of the Xlib standard.
  25.  */
  26. #ifndef _XMU_ATOMS_H_
  27. #define _XMU_ATOMS_H_
  28. #include <X11/Intrinsic.h>
  29. #include <X11/Xfuncproto.h>
  30. typedef struct _AtomRec *AtomPtr;
  31. extern AtomPtr
  32.     _XA_ATOM_PAIR,
  33.     _XA_CHARACTER_POSITION,
  34.     _XA_CLASS,
  35.     _XA_CLIENT_WINDOW,
  36.     _XA_CLIPBOARD,
  37.     _XA_COMPOUND_TEXT,
  38.     _XA_DECNET_ADDRESS,
  39.     _XA_DELETE,
  40.     _XA_FILENAME,
  41.     _XA_HOSTNAME,
  42.     _XA_IP_ADDRESS,
  43.     _XA_LENGTH,
  44.     _XA_LIST_LENGTH,
  45.     _XA_NAME,
  46.     _XA_NET_ADDRESS,
  47.     _XA_NULL,
  48.     _XA_OWNER_OS,
  49.     _XA_SPAN,
  50.     _XA_TARGETS,
  51.     _XA_TEXT,
  52.     _XA_TIMESTAMP,
  53.     _XA_USER,
  54.     _XA_UTF8_STRING;
  55. #define XA_ATOM_PAIR(d) XmuInternAtom(d, _XA_ATOM_PAIR)
  56. #define XA_CHARACTER_POSITION(d) XmuInternAtom(d, _XA_CHARACTER_POSITION)
  57. #define XA_CLASS(d) XmuInternAtom(d, _XA_CLASS)
  58. #define XA_CLIENT_WINDOW(d) XmuInternAtom(d, _XA_CLIENT_WINDOW)
  59. #define XA_CLIPBOARD(d) XmuInternAtom(d, _XA_CLIPBOARD)
  60. #define XA_COMPOUND_TEXT(d) XmuInternAtom(d, _XA_COMPOUND_TEXT)
  61. #define XA_DECNET_ADDRESS(d) XmuInternAtom(d, _XA_DECNET_ADDRESS)
  62. #define XA_DELETE(d) XmuInternAtom(d, _XA_DELETE)
  63. #define XA_FILENAME(d) XmuInternAtom(d, _XA_FILENAME)
  64. #define XA_HOSTNAME(d) XmuInternAtom(d, _XA_HOSTNAME)
  65. #define XA_IP_ADDRESS(d) XmuInternAtom(d, _XA_IP_ADDRESS)
  66. #define XA_LENGTH(d) XmuInternAtom(d, _XA_LENGTH)
  67. #define XA_LIST_LENGTH(d) XmuInternAtom(d, _XA_LIST_LENGTH)
  68. #define XA_NAME(d) XmuInternAtom(d, _XA_NAME)
  69. #define XA_NET_ADDRESS(d) XmuInternAtom(d, _XA_NET_ADDRESS)
  70. #define XA_NULL(d) XmuInternAtom(d, _XA_NULL)
  71. #define XA_OWNER_OS(d) XmuInternAtom(d, _XA_OWNER_OS)
  72. #define XA_SPAN(d) XmuInternAtom(d, _XA_SPAN)
  73. #define XA_TARGETS(d) XmuInternAtom(d, _XA_TARGETS)
  74. #define XA_TEXT(d) XmuInternAtom(d, _XA_TEXT)
  75. #define XA_TIMESTAMP(d) XmuInternAtom(d, _XA_TIMESTAMP)
  76. #define XA_USER(d) XmuInternAtom(d, _XA_USER)
  77. #define XA_UTF8_STRING(d) XmuInternAtom(d, _XA_UTF8_STRING)
  78. _XFUNCPROTOBEGIN
  79. char *XmuGetAtomName
  80. (
  81.  Display *dpy,
  82.  Atom atom
  83.  );
  84. Atom XmuInternAtom
  85. (
  86.  Display *dpy,
  87.  AtomPtr atom_ptr
  88.  );
  89. void XmuInternStrings
  90. (
  91.  Display *dpy,
  92.  String *names,
  93.  Cardinal     count,
  94.  Atom *atoms_return
  95. );
  96. AtomPtr XmuMakeAtom
  97. (
  98.  _Xconst char *name
  99.  );
  100. char *XmuNameOfAtom
  101. (
  102.  AtomPtr atom_ptr
  103.  );
  104. _XFUNCPROTOEND
  105. #endif /* _XMU_ATOMS_H_ */