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.

20 lines
583 B

  1. // drerr.h
  2. // error code definition for data router and winsock callback.
  3. #ifndef DRERR_H
  4. #define DRERR_H
  5. #include "apierror.h"
  6. // error code for data router
  7. #define DR_E_FAIL (ERROR_BASE_ID + 1)
  8. #define DR_E_OUTOFMEMORY (ERROR_BASE_ID + 2)
  9. // error code for winsock callback
  10. #define WSCB_E_SONOTFOUND (ERROR_BASE_ID + 1) // SocketObject not found in SO List
  11. #define WSCB_E_NOTINTABLE (ERROR_BASE_ID + 2) // Socket not found in socket table
  12. #define WSCB_E_MPOOLUSEDUP (ERROR_BASE_ID + 3) // Memory pool used up
  13. #endif