home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / OLS / Os2 / LHA2P205 / LHA2P205.LZH / lha2-2.05pre / source.lzh / src / errmes.h < prev    next >
C/C++ Source or Header  |  1995-10-15  |  2KB  |  87 lines

  1. /*
  2.  * errmes.h
  3.  *   Copyright (C) 1988-1992, Haruyasu YOSHIZAKI
  4.  *   Copyright (C) 1991-1995, Satoshi HIRAMATSU (OS/2 HPFS version)
  5.  *
  6.  * $Log$
  7.  */
  8.  
  9.  
  10. #ifndef __INCLUDED_ERRMES_H
  11. #define __INCLUDED_ERRMES_H
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16.  
  17. #define NOARCNMERR    _NOARCNMERR
  18. #define NOFNERR        _NOFNERR
  19. #define NOARCERR    _NOARCERR
  20. #define MKTMPERR    _MKTMPERR
  21. #define DUPFNERR    _DUPFNERR
  22. #define TOOLONGERR    _TOOLONGERR
  23. #define NOFILEERR    _NOFILEERR
  24. #define MKFILEERR    _MKFILEERR
  25. #define RDERR        _RDERR
  26. #define WTERR        _WTERR
  27. #define MEMOVRERR    _MEMOVRERR
  28. #define CTRLBRK        _CTRLBRK
  29. #define NOMATCHERR    _NOMATCHERR
  30. #define NOTLZH        _NOTLZH
  31.  
  32. #define SAMEFILE    _SAMEFILE
  33. #define OVERWT        _OVERWT
  34. #define MKDIR        _MKDIR
  35. #define MKDIRERR    _MKDIRERR
  36. #define RDONLY        _RDONLY
  37. #define COPYERR        _COPYERR
  38.  
  39. #define BROKENARC    _BROKENARC
  40. #define MAYDELETE    _MAYDELETE
  41. #define MAYCONT        _MAYCONT
  42.  
  43. #define SAMEDIR        _SAMEDIR
  44. #define NEWFILE        _NEWFILE
  45. #define METHODERR    _METHODERR
  46. #define DISKFULL    _DISKFULL
  47. #define NOCRC        _NOCRC
  48. #define NOMOREEXT    _NOMOREEXT
  49. #define SPECIALATTR    _SPECIALATTR
  50. #define EXTRADATA    _EXTRADATA
  51.  
  52. #if 0
  53. #define UNKNOWNERR    _UNKNOWNERR
  54. #define INVCMDERR    _INVCMDERR
  55. #define MANYPATERR    _MANYPATERR
  56. #define RENAMEERR    _RENAMEERR
  57. #define TOOMANYERR    _TOOMANYERR
  58. #define INVSWERR    _INVSWERR
  59. #define CRCERR        _CRCERR
  60. #define MKARCERR    _MKARCERR
  61. #define NESTERR        _NESTERR
  62. #endif
  63.  
  64.  
  65. /* common message pointer */
  66. char *NOARCNMERR, *NOFNERR, *NOARCERR, *MKTMPERR, *DUPFNERR, *TOOLONGERR,
  67.   *NOFILEERR, *MKFILEERR, *RDERR, *WTERR, *MEMOVRERR, *CTRLBRK, *NOMATCHERR,
  68.   *NOTLZH, *SAMEFILE, *OVERWT, *MKDIR, *MKDIRERR, *RDONLY, *COPYERR,
  69.   *BROKENARC, *MAYDELETE, *MAYCONT, *SAMEDIR, *NEWFILE, *METHODERR,
  70.   *DISKFULL, *NOCRC, *NOMOREEXT, *SPECIALATTR, *EXTRADATA;
  71.  
  72. #if 0
  73. char *UNKNOWNERR, *INVCMDERR, *MANYPATERR, *RENAMEERR, *TOOMANYERR, *INVSWERR,
  74.   *CRCERR, *MKARCERR, *NESTERR;
  75. #endif
  76.  
  77.  
  78. #ifndef FIRST_COMPILATION
  79. char *use;            /* usage */
  80. #endif
  81.  
  82.  
  83. #ifdef __cplusplus
  84. }
  85. #endif
  86. #endif /* __INCLUDED_ERRMES_H */
  87.