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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: DisplayQue.h,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */
  2. /*
  3. Copyright 1994, 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/DisplayQue.h,v 1.5 2001/01/17 19:42:54 dawes Exp $ */
  22. #ifndef _XMU_DISPLAYQUE_H_
  23. #define _XMU_DISPLAYQUE_H_
  24. #include <X11/Xmu/CloseHook.h>
  25. #include <X11/Xfuncproto.h>
  26. /*
  27.  *       Public Entry Points
  28.  * 
  29.  * 
  30.  * XmuDisplayQueue *XmuDQCreate (closefunc, freefunc, data)
  31.  *     XmuCloseDisplayQueueProc closefunc;
  32.  *     XmuFreeDisplayQueueProc freefunc;
  33.  *     XPointer data;
  34.  * 
  35.  *         Creates and returns a queue into which displays may be placed.  When
  36.  *         the display is closed, the closefunc (if non-NULL) is upcalled with
  37.  *         as follows:
  38.  *
  39.  *                 (*closefunc) (queue, entry)
  40.  *
  41.  *         The freeproc, if non-NULL, is called whenever the last display is
  42.  *         closed, notifying the creator that display queue may be released
  43.  *         using XmuDQDestroy.
  44.  *
  45.  *
  46.  * Bool XmuDQDestroy (q, docallbacks)
  47.  *     XmuDisplayQueue *q;
  48.  *     Bool docallbacks;
  49.  * 
  50.  *         Releases all memory for the indicated display queue.  If docallbacks
  51.  *         is true, then the closefunc (if non-NULL) is called for each 
  52.  *         display.
  53.  * 
  54.  * 
  55.  * XmuDisplayQueueEntry *XmuDQLookupDisplay (q, dpy)
  56.  *     XmuDisplayQueue *q;
  57.  *     Display *dpy;
  58.  *
  59.  *         Returns the queue entry for the specified display or NULL if the
  60.  *         display is not in the queue.
  61.  *
  62.  * 
  63.  * XmuDisplayQueueEntry *XmuDQAddDisplay (q, dpy, data)
  64.  *     XmuDisplayQueue *q;
  65.  *     Display *dpy;
  66.  *     XPointer data;
  67.  *
  68.  *         Adds the indicated display to the end of the queue or NULL if it
  69.  *         is unable to allocate memory.  The data field may be used by the
  70.  *         caller to attach arbitrary data to this display in this queue.  The
  71.  *         caller should use XmuDQLookupDisplay to make sure that the display
  72.  *         hasn't already been added.
  73.  * 
  74.  * 
  75.  * Bool XmuDQRemoveDisplay (q, dpy)
  76.  *     XmuDisplayQueue *q;
  77.  *     Display *dpy;
  78.  *
  79.  *         Removes the specified display from the given queue.  If the 
  80.  *         indicated display is not found on this queue, False is returned,
  81.  *         otherwise True is returned.
  82.  */
  83. typedef struct _XmuDisplayQueue XmuDisplayQueue;
  84. typedef struct _XmuDisplayQueueEntry XmuDisplayQueueEntry;
  85. typedef int (*XmuCloseDisplayQueueProc)(XmuDisplayQueue *queue,
  86. XmuDisplayQueueEntry *entry);
  87. typedef int (*XmuFreeDisplayQueueProc)(XmuDisplayQueue *queue);
  88. struct _XmuDisplayQueueEntry {
  89.     struct _XmuDisplayQueueEntry *prev, *next;
  90.     Display *display;
  91.     CloseHook closehook;
  92.     XPointer data;
  93. };
  94. struct _XmuDisplayQueue {
  95.     int nentries;
  96.     XmuDisplayQueueEntry *head, *tail;
  97.     XmuCloseDisplayQueueProc closefunc;
  98.     XmuFreeDisplayQueueProc freefunc;
  99.     XPointer data;
  100. };
  101. _XFUNCPROTOBEGIN
  102. XmuDisplayQueue *XmuDQCreate
  103. (
  104.  XmuCloseDisplayQueueProc closefunc,
  105.  XmuFreeDisplayQueueProc freefunc,
  106.  XPointer data
  107.  );
  108. Bool XmuDQDestroy
  109. (
  110.  XmuDisplayQueue *q,
  111.  Bool docallbacks
  112.  );
  113. XmuDisplayQueueEntry *XmuDQLookupDisplay
  114. (
  115.  XmuDisplayQueue *q,
  116.  Display *dpy
  117.  );
  118. XmuDisplayQueueEntry *XmuDQAddDisplay
  119. (
  120.  XmuDisplayQueue *q,
  121.  Display *dpy,
  122.  XPointer data
  123.  );
  124. Bool XmuDQRemoveDisplay
  125. (
  126.  XmuDisplayQueue *q,
  127.  Display *dpy
  128.  );
  129. _XFUNCPROTOEND
  130. #define XmuDQNDisplays(q) ((q)->nentries)
  131. #endif /* _XMU_DISPLAYQUE_H_ */