home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 January / macformat46.iso / Shareware Plus / Developers / Library / Grant's CGI Framework / Grant's CGI Framework / grantscgi / Util / Quit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-20  |  749 b   |  41 lines

  1. #pragma once
  2. /*****
  3.  *
  4.  *    Quit.h
  5.  *
  6.  *    This is a support file for "Grant's CGI Framework".
  7.  *    Please see the license agreement that accompanies the distribution package
  8.  *    for licensing details.
  9.  *
  10.  *    Copyright ©1995,1996 by Grant Neufeld
  11.  *    grant@acm.com
  12.  *    http://arpp.carleton.ca/cgi/framework/
  13.  *
  14.  *****/
  15.  
  16. #include "MyConfiguration.h"
  17.  
  18. #if kCompilingForWSAPI
  19. #include <WSAPI.h>
  20. #endif
  21.  
  22. /***  FUNCTION PROTOTYPES  ***/
  23.  
  24.         void        doQuitApp        ( void );
  25.         
  26.         #if kCompilingForWSAPI
  27.         long        QuitWSAPI        ( WSAPI_CommandPBPtr );
  28.         #endif
  29.         Boolean        QuitPrepare        ( Boolean );
  30.         
  31. p_export void        ForceQuit        ( void );
  32.     
  33. #if kCompileWithQuitOnLongIdle
  34.     p_export void    ResetQuitIdleTimer    ( void );
  35. #else
  36.     #define ResetQuitIdleTimer()    
  37. #endif
  38.  
  39.  
  40. /***** EOF *****/
  41.