home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- /*****
- *
- * Quit.h
- *
- * This is a support file for "Grant's CGI Framework".
- * Please see the license agreement that accompanies the distribution package
- * for licensing details.
- *
- * Copyright ©1995,1996 by Grant Neufeld
- * grant@acm.com
- * http://arpp.carleton.ca/cgi/framework/
- *
- *****/
-
- #include "MyConfiguration.h"
-
- #if kCompilingForWSAPI
- #include <WSAPI.h>
- #endif
-
- /*** FUNCTION PROTOTYPES ***/
-
- void doQuitApp ( void );
-
- #if kCompilingForWSAPI
- long QuitWSAPI ( WSAPI_CommandPBPtr );
- #endif
- Boolean QuitPrepare ( Boolean );
-
- p_export void ForceQuit ( void );
-
- #if kCompileWithQuitOnLongIdle
- p_export void ResetQuitIdleTimer ( void );
- #else
- #define ResetQuitIdleTimer()
- #endif
-
-
- /***** EOF *****/
-