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.

46 lines
1.3 KiB

  1. /*++ BUILD Version: ???? Increment this if a change has global effects
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. dderror.h
  5. Abstract:
  6. This module defines the 32-Bit Windows error codes that are useable by
  7. portable kernel drivers.
  8. Revision History:
  9. --*/
  10. #ifndef _DDERROR_
  11. #define _DDERROR_
  12. /*
  13. * This file is a subset of Win32 error codes. Other win32 error codes
  14. * are not supported by portable drivers and should not beused.
  15. * This #define removes the definitions of all other error codes.
  16. */
  17. #define _WINERROR_
  18. #define NO_ERROR 0L
  19. #define ERROR_INVALID_FUNCTION 1L
  20. #define ERROR_NOT_ENOUGH_MEMORY 8L
  21. #define ERROR_DEV_NOT_EXIST 55L
  22. #define ERROR_INVALID_PARAMETER 87L
  23. #define ERROR_INSUFFICIENT_BUFFER 122L
  24. #define ERROR_INVALID_NAME 123L
  25. #define ERROR_BUSY 170L
  26. #define ERROR_MORE_DATA 234L
  27. #define WAIT_TIMEOUT 258L
  28. #define ERROR_IO_PENDING 997L
  29. #define ERROR_DEVICE_REINITIALIZATION_NEEDED 1164L
  30. #define ERROR_CONTINUE 1246L
  31. #define ERROR_NO_MORE_DEVICES 1248L
  32. #endif /* _DDERROR_ */