|
|
1.1 root 1: /*++ BUILD Version: 0001 Increment this if a change has global effects
2:
3: Copyright (c) 1990 Microsoft Corporation
4:
5: Module Name:
6:
7: dderror.h
8:
9: Abstract:
10:
11: This module defines the 32-Bit Windows error codes that are useable by
12: portable kernel drivers.
13:
14: Revision History:
15:
16: --*/
17:
18: #ifndef _DDERROR_
19: #define _DDERROR_
20:
21: /*
22: * This file is a subset of Win32 error codes. Other win32 error codes
23: * are not supported by portable drivers and should not beused.
24: * This #define removes the definitions of all other error codes.
25: */
26:
27: #define _WINERROR_
28:
29: #define NO_ERROR 0L
30: #define ERROR_INVALID_FUNCTION 1L
31: #define ERROR_NOT_ENOUGH_MEMORY 8L
32: #define ERROR_DEV_NOT_EXIST 55L
33: #define ERROR_INVALID_PARAMETER 87L
34: #define ERROR_INSUFFICIENT_BUFFER 122L
35: #define ERROR_MORE_DATA 234L
36: #define ERROR_IO_PENDING 997L
37:
38: #endif /* _DDERROR_ */
39:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.