mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
define File disposition values as NT
add FILE_EXISTS svn path=/trunk/; revision=183
This commit is contained in:
parent
93afbbc9d6
commit
8f3084dc6d
1 changed files with 5 additions and 4 deletions
|
@ -225,11 +225,12 @@ enum
|
|||
/*
|
||||
* File disposition values
|
||||
*/
|
||||
#define FILE_CREATED 0x0000
|
||||
#define FILE_SUPERSEDED 0x0000
|
||||
#define FILE_OPENED 0x0001
|
||||
#define FILE_OVERWRITTEN 0x0002
|
||||
#define FILE_SUPERSEDED 0x0003
|
||||
#define FILE_DOES_NOT_EXIST 0x0004
|
||||
#define FILE_CREATED 0x0002
|
||||
#define FILE_OVERWRITTEN 0x0003
|
||||
#define FILE_EXISTS 0x0004
|
||||
#define FILE_DOES_NOT_EXIST 0x0005
|
||||
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue