Source code of Windows XP (NT5)
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.

55 lines
1.0 KiB

  1. /*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. arc.h
  5. Abstract:
  6. This header file defines the ARC status codes.
  7. Author:
  8. David N. Cutler (davec) 20-Sep-1991
  9. Revision History:
  10. --*/
  11. #ifndef _ARCCODES_
  12. #define _ARCCODES_
  13. //
  14. // Define ARC status codes.
  15. //
  16. typedef enum _ARC_CODES {
  17. ESUCCESS, // 0
  18. E2BIG, // 1
  19. EACCES, // 2
  20. EAGAIN, // 3
  21. EBADF, // 4
  22. EBUSY, // 5
  23. EFAULT, // 6
  24. EINVAL, // 7
  25. EIO, // 8
  26. EISDIR, // 9
  27. EMFILE, // 10
  28. EMLINK, // 11
  29. ENAMETOOLONG, // 12
  30. ENODEV, // 13
  31. ENOENT, // 14
  32. ENOEXEC, // 15
  33. ENOMEM, // 16
  34. ENOSPC, // 17
  35. ENOTDIR, // 18
  36. ENOTTY, // 19
  37. ENXIO, // 20
  38. EROFS, // 21
  39. EMAXIMUM // 22
  40. } ARC_CODES;
  41. #endif // ARCCODES