home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-bin / x11r6.1 / include / x11 / xmu / closehook.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-17  |  2.3 KB  |  80 lines

  1. /* $XConsortium: CloseHook.h,v 1.7 94/04/17 20:15:52 rws Exp $ */
  2.  
  3. /* 
  4.  
  5. Copyright (c) 1988  X Consortium
  6.  
  7. Permission is hereby granted, free of charge, to any person obtaining a copy
  8. of this software and associated documentation files (the "Software"), to deal
  9. in the Software without restriction, including without limitation the rights
  10. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. copies of the Software, and to permit persons to whom the Software is
  12. furnished to do so, subject to the following conditions:
  13.  
  14. The above copyright notice and this permission notice shall be included in
  15. all copies or substantial portions of the Software.
  16.  
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  20. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  21. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  22. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23.  
  24. Except as contained in this notice, the name of the X Consortium shall not be
  25. used in advertising or otherwise to promote the sale, use or other dealings
  26. in this Software without prior written authorization from the X Consortium.
  27.  
  28. */
  29.  
  30. /*
  31.  * The interfaces described by this header file are for miscellaneous utilities
  32.  * and are not part of the Xlib standard.
  33.  */
  34.  
  35. #ifndef _XMU_CLOSEHOOK_H_
  36. #define _XMU_CLOSEHOOK_H_
  37.  
  38. #include <X11/Xfuncproto.h>
  39.  
  40. typedef XPointer CloseHook;
  41.  
  42. typedef int (*XmuCloseHookProc)(
  43. #if NeedFunctionPrototypes
  44.     Display*    /* dpy */,
  45.     XPointer    /* data */
  46. #endif 
  47. );
  48.  
  49. _XFUNCPROTOBEGIN
  50.  
  51. extern CloseHook XmuAddCloseDisplayHook(
  52. #if NeedFunctionPrototypes
  53.     Display *    /* dpy */,
  54.     XmuCloseHookProc    /* proc */,
  55.     XPointer    /* arg */
  56. #endif
  57. );
  58.  
  59. extern Bool XmuLookupCloseDisplayHook(
  60. #if NeedFunctionPrototypes
  61.     Display *    /* dpy */,
  62.     CloseHook    /* handle */,
  63.     XmuCloseHookProc    /* proc */,
  64.     XPointer    /* arg  */
  65. #endif
  66. );
  67.  
  68. extern Bool XmuRemoveCloseDisplayHook(
  69. #if NeedFunctionPrototypes
  70.     Display *    /* dpy */,
  71.     CloseHook    /* handle */,
  72.     XmuCloseHookProc    /* proc */,
  73.     XPointer    /* arg */
  74. #endif
  75. );
  76.  
  77. _XFUNCPROTOEND
  78.  
  79. #endif /* _XMU_CLOSEHOOK_H_ */
  80.