home *** CD-ROM | disk | FTP | other *** search
- /*
- * File: errors.h
- * Project: DXF to RIB
- * (c) SPDsoft Tuesday, June 21, 1994, GTIC
- */
-
- #ifndef _MAC_ERRORS_H_
- #define _MAC_ERRORS_H_
-
- #define INPUT_ERR 1
- #define SYS_ERR 2
- #define STDC_ERR 5
- #define PROG_ERR 3
- #define NO_ERR 4
- #define STDC_ERR 5
-
- #define ABORT_ERR 10
- #define QUIT_ERR 9
- #define END_ERR 8
- #define ASK_ERR 7
- #define WARN_ERR 5
- #define INFO_ERR 2
- #define DEBUG_ERR 1
-
- extern OSErr err;
-
- extern int DoStdIO( void *foo, const char *fmt, ...);
- extern int DoError( int ErrType, int ErrSever,const char *, ...);
- extern char *GetErrFmt( short ErrType, short ErrID );
- extern void DoNotification( void );
-
- #endif