[go: up one dir, main page]

Menu

[r1]: / include / winerror.h  Maximize  Restore  History

Download this file

25 lines (18 with data), 844 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*---------------------------------------------------------------------------*/
/* winerr.h - WINDOWS 32 bit error code header file */
/*---------------------------------------------------------------------------*/
#ifndef _WINERROR_H
#define _WINERROR_H
#define ERROR_FILE_NOT_FOUND 2
#define ERROR_PATH_NOT_FOUND 3
#define ERROR_TOO_MANY_OPEN_FILES 4
#define ERROR_ACCESS_DENIED 5
#define ERROR_INVALID_HANDLE 6
#define ERROR_NOT_ENOUGH_MEMORY 8
#define ERROR_INVALID_ACCESS 12
#define ERROR_NOT_SAME_DEVICE 17
#define ERROR_SHARING_VIOLATION 32
#define ERROR_INVALID_PARAMETER 87
#define ERROR_OPEN_FAILED 110
#define ERROR_DISK_FULL 112
#endif // _WINERROR_H