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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: CloseHook.h,v 1.5 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/CloseHook.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_CLOSEHOOK_H_
  27. #define _XMU_CLOSEHOOK_H_
  28. #include <X11/Xlib.h>
  29. #include <X11/Xfuncproto.h>
  30. #include <X11/Xlibint.h>
  31. typedef XPointer CloseHook;
  32. typedef int (*XmuCloseHookProc)(Display *dpy, XPointer data);
  33. _XFUNCPROTOBEGIN
  34. CloseHook XmuAddCloseDisplayHook
  35. (
  36.  Display *dpy,
  37.  XmuCloseHookProc proc,
  38.  XPointer arg
  39.  );
  40. Bool XmuLookupCloseDisplayHook
  41. (
  42.  Display *dpy,
  43.  CloseHook handle,
  44.  XmuCloseHookProc proc,
  45.  XPointer arg
  46.  );
  47. Bool XmuRemoveCloseDisplayHook
  48. (
  49.  Display *dpy,
  50.  CloseHook handle,
  51.  XmuCloseHookProc proc,
  52.  XPointer arg
  53.  );
  54. _XFUNCPROTOEND
  55. #endif /* _XMU_CLOSEHOOK_H_ */