home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 6.ddi / MWHC.006 / I2 < prev    next >
Encoding:
Text File  |  1992-06-07  |  1.9 KB  |  65 lines

  1. #ifndef __RWTOOL_ERROR_H__
  2. #define __RWTOOL_ERROR_H__
  3. pragma push_align_members(64);
  4.  
  5. /*
  6.  *  Error numbers for the TOOL facility.
  7.  *  Automatically generated by an awk script.
  8.  *              DO NOT EDIT!
  9.  *
  10.  ****************************************************************************
  11.  *
  12.  *  Rogue Wave Software, Inc.
  13.  *  P.O. Box 2328
  14.  *  Corvallis, OR 97339
  15.  *
  16.  *  Copyright (C) 1990, 1991. This software is subject to copyright protection
  17.  *  under the laws of the United States and other countries.
  18.  *
  19.  ***************************************************************************
  20.  *
  21.  */
  22.  
  23. #include "rw/rwerr.h"
  24.  
  25. const RWErrNo TOOL_FIRSTERR        =0x2000;
  26. const RWErrNo TOOL_BADRE        =0x2000;
  27. const RWErrNo TOOL_CRABS        =0x2001;
  28. const RWErrNo TOOL_EOF        =0x2002;
  29. const RWErrNo TOOL_FLIST        =0x2003;
  30. const RWErrNo TOOL_GENERIC        =0x2004;
  31. const RWErrNo TOOL_ID        =0x2005;
  32. const RWErrNo TOOL_INDEX        =0x2006;
  33. const RWErrNo TOOL_MAGIC        =0x2007;
  34. const RWErrNo TOOL_NOBIN        =0x2008;
  35. const RWErrNo TOOL_NOCREATE        =0x2009;
  36. const RWErrNo TOOL_NOMEM        =0x200a;
  37. const RWErrNo TOOL_NOTALLOW        =0x200b;
  38. const RWErrNo TOOL_NULSS        =0x200c;
  39. const RWErrNo TOOL_OPERR        =0x200d;
  40. const RWErrNo TOOL_OVFLOW        =0x200e;
  41. const RWErrNo TOOL_READERR        =0x200f;
  42. const RWErrNo TOOL_SEEKERR        =0x2010;
  43. const RWErrNo TOOL_STREAM        =0x2011;
  44. const RWErrNo TOOL_SUBSTRING        =0x2012;
  45. const RWErrNo TOOL_SYNSTREAM        =0x2013;
  46. const RWErrNo TOOL_NEVECL        =0x2014;
  47. const RWErrNo TOOL_WRITEERR        =0x2015;
  48. const RWErrNo TOOL_INVCHARST        =0x2016;
  49. const RWErrNo TOOL_LOCK        =0x2017;
  50. const RWErrNo TOOL_UNLOCK        =0x2018;
  51. const RWErrNo TOOL_LONGINDEX        =0x2019;
  52. const RWErrNo TOOL_ALLOCOUT        =0x201a;
  53. const RWErrNo TOOL_LASTERROR        =0x201a;
  54.  
  55. // Used to initialize the TOOL error facility once only:
  56. struct RWExport RWTOOLInit {
  57.   RWTOOLInit();
  58.   ~RWTOOLInit();
  59. };
  60.  
  61. static RWTOOLInit RWTOOLobj;
  62.  
  63. pragma pop_align_members();
  64. #endif /* __RWTOOL_ERROR_H__ */
  65.