home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / errmsg.h < prev    next >
C/C++ Source or Header  |  1998-06-17  |  926b  |  45 lines

  1. /***
  2. *errmsg.h - defines error message numbers
  3. *
  4. *       Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *       This file contains the constants for error message numbers.
  8. *       Same as errmsg.inc
  9. *
  10. *       [Internal]
  11. *
  12. ****/
  13.  
  14. #if _MSC_VER > 1000
  15. #pragma once
  16. #endif  /* _MSC_VER > 1000 */
  17.  
  18. #ifndef _INC_ERRMSG
  19.  
  20. #ifndef _CRTBLD
  21. /*
  22.  * This is an internal C runtime header file. It is used when building
  23.  * the C runtimes only. It is not to be used as a public header file.
  24.  */
  25. #error ERROR: Use of C runtime library internal header file.
  26. #endif  /* _CRTBLD */
  27.  
  28. #define STCKOVR 0
  29. #define NULLERR 1
  30. #define NOFP    2
  31. #define DIVZR   3
  32. #define BADVERS 4
  33. #define NOMEM   5
  34. #define BADFORM 6
  35. #define BADENV  7
  36. #define NOARGV  8
  37. #define NOENVP  9
  38. #define ABNORM  10
  39. #define UNKNOWN 11
  40.  
  41. #define CRT_NERR 11
  42.  
  43. #define _INC_ERRMSG
  44. #endif  /* _INC_ERRMSG */
  45.