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.

51 lines
1.2 KiB

  1. #define WTLOG_BASE 40000
  2. #define WTLOG_INIT_CRITSEC_FAILED (WTLOG_BASE + 1)
  3. /*
  4. * WT was unable to initialize a critical section.
  5. * The data is the exception code.
  6. */
  7. #define WTLOG_CREATE_EVENT_FAILED (WTLOG_BASE + 2)
  8. /*
  9. * WT was unable to create an event.
  10. * The data is the error code.
  11. */
  12. #define WTLOG_HEAP_CREATE_FAILED (WTLOG_BASE + 3)
  13. /*
  14. * WT was unable to create a heap.
  15. * The data is the error code.
  16. */
  17. #define WTLOG_HEAP_ALLOC_FAILED (WTLOG_BASE + 4)
  18. /*
  19. * WT was unable to allocate memory from its heap.
  20. * The data is the error code.
  21. */
  22. #define WTLOG_WSASTARTUP_FAILED (WTLOG_BASE + 5)
  23. /*
  24. * WT was unable to start Windows Sockets.
  25. * The data is the error code.
  26. */
  27. #define WTLOG_CREATE_WAITABLE_TIMER_FAILED (WTLOG_BASE + 6)
  28. /*
  29. * WT was unable to create waitable timer.
  30. * The data is the error code.
  31. */
  32. #define WTLOG_ERROR_DETECTED (WTLOG_BASE + 7)
  33. /*
  34. * Some Error Detected.
  35. * The data is the error code.
  36. */
  37. #define WTLOG_WSA_RECV_FROM_FAILED (WTLOG_BASE + 8)
  38. /*
  39. * WSARecvFrom failed in AsyncWSARecvFrom.
  40. * The data is the error code.
  41. */