home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- /*****
- *
- * ErrorUtil.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/grant/
- *
- *****/
-
- /*** CONSTANT DECLARATIONS ***/
-
- #define krErrSystemDefault 300
- #define krStartupErrorStrs 301
-
- #define ksErrSystemDefault "\pAn error was encountered in a system call."
-
-
- /*** FUNCTION PROTOTYPES ***/
-
- p_export void ErrorSystemHandler ( OSErr, Boolean );
- p_export void ErrorStartup ( short );
-
- #define ErrorSystem(e) ErrorSystemHandler(e,true)
-
-
- /* EOF */
-