home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-28 | 903 b | 18 lines | [TEXT/MMCC] |
- /************************************************************************************
- * *
- * ErrCheck.h *
- * *
- * ©1995 Douglas Grounds. All Rights Reserved. *
- * *
- * This file contains error checking functions which makes checking for resource, *
- * memory and other error conditions much simpler. Examples are given for the *
- * use of each function. *
- * *
- ************************************************************************************/
-
- void notifyOfError (char *routineName, char *caller, short errValue,
- Boolean isFatal);
- Boolean checkResError (Handle h);
- Boolean checkMemError (void *myPointerOrHandle);
- Boolean checkOSErr (OSErr err);
-