home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_07 / LATTIC_3.ZIP / HEADERS / OSERR.H < prev    next >
C/C++ Source or Header  |  1990-02-21  |  819b  |  49 lines

  1. /*
  2.  * oserr.h - TOS specific error code information
  3.  *
  4.  * Copyright (c) 1990 HiSoft
  5.  */
  6.  
  7. #ifndef _OSERR_H
  8. #define _OSERR_H
  9.  
  10. #define E_OK    0
  11. #define ERROR    1
  12. #define EDRVNR    2
  13. #define EUNCMD    3
  14. #define E_CRC    4
  15. #define EBADRQ    5
  16. #define E_SEEK    6
  17. #define EMEDIA    7
  18. #define ESECNF    8
  19. #define EPAPER    9
  20. #define EWRITF    10
  21. #define EREADF    11
  22. #define EWRPRO    13
  23. #define E_CHNG    14
  24. #define EUNDEV    15
  25. #define EBADSF    16
  26. #define EOTHER    17
  27.  
  28. #define EINVFN    32
  29. #define EFILNF    33
  30. #define EPTHNF    34
  31. #define ENHNDL    35
  32. #define EACCDN    36
  33. #define EIHNDL    37
  34. #define ENSMEM    39
  35. #define EIMBA    40
  36. #define EDRIVE    46
  37. #define ENSAME    48
  38. #define ENMFIL    49
  39. #define E_RANGE    64
  40. #define EINTRN    65
  41. #define EPLFMT    66
  42. #define EGSBF    67
  43.  
  44. extern long volatile _OSERR;
  45. extern int os_nerr;
  46. extern char *os_errlist[];
  47.  
  48. #endif
  49.