home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************
- *
- * CustomGetFile Dialog Demo
- *
- * ErrorUtils.h
- *
- * Written in CodeWarrior Gold 5.5
- * August 31, 1995
- *
- * Copyright © 1995 Carl B. Constantine
- * Some portions Copyright © 1995 MetroWerks, Inc.
- * Some portions Copyright © 1995 Apple Computer, Inc.
- *
- **********************************************************************/
-
- /*------------------------------------------------------------------
- #
- # File History
- #
- # Date Description of Change
- # ---- ---------------------
- # Aug 31/93 — Original creation of file
- #
- #
- -------------------------------------------------------------------*/
-
- #pragma once
-
-
- #define rErrorStrings 500 /* String Resources for the Error Messages */
- #define rErrorAlert 500 /* Alert for our Errors */
-
- /* Error codes are indexes in a STR# resource. These ones are for System
- related errors */
-
- #define errWimpySystem 1
- #define errWeirdSystem 2
- #define errNoMenuBar 3
- #define errAEHandler 4
- #define errNoMem 5
-
-
- void DeathAlert( short errNumber );
- void GenAlert( short errNumber );
-
- /*============================ End of File ===================================*/