home *** CD-ROM | disk | FTP | other *** search
- #ifndef __RWCORE_ERROR_H__
- #define __RWCORE_ERROR_H__
- pragma push_align_members(64);
-
- /*
- * Error numbers for the CORE facility.
- * Automatically generated by an awk script.
- * DO NOT EDIT!
- *
- ****************************************************************************
- *
- * Rogue Wave Software, Inc.
- * P.O. Box 2328
- * Corvallis, OR 97339
- *
- * Copyright (C) 1990, 1991. This software is subject to copyright protection
- * under the laws of the United States and other countries.
- *
- ***************************************************************************
- *
- */
-
- #include "rw/rwerr.h"
-
- const RWErrNo CORE_FIRSTERR =0x1000;
- const RWErrNo CORE_EOF =0x1000;
- const RWErrNo CORE_GENERIC =0x1001;
- const RWErrNo CORE_INVADDR =0x1002;
- const RWErrNo CORE_LOCK =0x1003;
- const RWErrNo CORE_NOINIT =0x1004;
- const RWErrNo CORE_NOMEM =0x1005;
- const RWErrNo CORE_OPERR =0x1006;
- const RWErrNo CORE_OUTALLOC =0x1007;
- const RWErrNo CORE_OVFLOW =0x1008;
- const RWErrNo CORE_STREAM =0x1009;
- const RWErrNo CORE_SYNSTREAM =0x100a;
- const RWErrNo CORE_LASTERROR =0x100a;
-
- // Used to initialize the CORE error facility once only:
- struct RWExport RWCOREInit {
- RWCOREInit();
- ~RWCOREInit();
- };
-
- static RWCOREInit RWCOREobj;
-
- pragma pop_align_members();
- #endif /* __RWCORE_ERROR_H__ */
-