home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / VPIDB100.ZIP / OD_ERROR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  565 b   |  14 lines

  1. #define HELP       1                /* Display help screen */
  2. #define OPEN       10               /* Error opening file */
  3. #define CLOSE      20               /* Error closing file */
  4. #define READ       30               /* Error reading file */
  5. #define WRITE      40               /* Error writing file */
  6. #define SEEK       50               /* Error seeking in file */
  7. #define MEM        60               /* Error allocating memory */
  8.  
  9. #ifndef USAGE
  10.  #define USAGE "Help not available\n\r"
  11. #endif
  12.  
  13. void Error( int ErrorLevel, int Line, char * File );
  14.