Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.2 KiB

  1. /***
  2. *errmsg.h - defines error message numbers
  3. *
  4. * Copyright (c) 1985-2001, 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. *Revision History:
  13. * 08-03-89 GJF Fixed copyright
  14. * 10-30-89 GJF Fixed copyright
  15. * 02-28-90 GJF Added #ifndef _INC_ERRMSG stuff
  16. * 02-14-95 CFW Clean up Mac merge.
  17. * 03-29-95 CFW Add error message to internal headers.
  18. * 12-14-95 JWM Add "#pragma once".
  19. * 02-24-97 GJF Detab-ed.
  20. *
  21. ****/
  22. #if _MSC_VER > 1000 /*IFSTRIP=IGN*/
  23. #pragma once
  24. #endif
  25. #ifndef _INC_ERRMSG
  26. #ifndef _CRTBLD
  27. /*
  28. * This is an internal C runtime header file. It is used when building
  29. * the C runtimes only. It is not to be used as a public header file.
  30. */
  31. #error ERROR: Use of C runtime library internal header file.
  32. #endif /* _CRTBLD */
  33. #define STCKOVR 0
  34. #define NULLERR 1
  35. #define NOFP 2
  36. #define DIVZR 3
  37. #define BADVERS 4
  38. #define NOMEM 5
  39. #define BADFORM 6
  40. #define BADENV 7
  41. #define NOARGV 8
  42. #define NOENVP 9
  43. #define ABNORM 10
  44. #define UNKNOWN 11
  45. #define CRT_NERR 11
  46. #define _INC_ERRMSG
  47. #endif /* _INC_ERRMSG */