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

  1. #ifndef __RWCORE_ERROR_H__
  2. #define __RWCORE_ERROR_H__
  3. pragma push_align_members(64);
  4.  
  5. /*
  6.  *  Error numbers for the CORE 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 CORE_FIRSTERR        =0x1000;
  26. const RWErrNo CORE_EOF        =0x1000;
  27. const RWErrNo CORE_GENERIC        =0x1001;
  28. const RWErrNo CORE_INVADDR        =0x1002;
  29. const RWErrNo CORE_LOCK        =0x1003;
  30. const RWErrNo CORE_NOINIT        =0x1004;
  31. const RWErrNo CORE_NOMEM        =0x1005;
  32. const RWErrNo CORE_OPERR        =0x1006;
  33. const RWErrNo CORE_OUTALLOC        =0x1007;
  34. const RWErrNo CORE_OVFLOW        =0x1008;
  35. const RWErrNo CORE_STREAM        =0x1009;
  36. const RWErrNo CORE_SYNSTREAM        =0x100a;
  37. const RWErrNo CORE_LASTERROR        =0x100a;
  38.  
  39. // Used to initialize the CORE error facility once only:
  40. struct RWExport RWCOREInit {
  41.   RWCOREInit();
  42.   ~RWCOREInit();
  43. };
  44.  
  45. static RWCOREInit RWCOREobj;
  46.  
  47. pragma pop_align_members();
  48. #endif /* __RWCORE_ERROR_H__ */
  49.