2020-06-15 14:18:57 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_NT_ENUM_FILEMAPFLAGS_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_NT_ENUM_FILEMAPFLAGS_H_
|
|
|
|
|
2020-11-28 20:01:51 +00:00
|
|
|
#define kNtFileMapCopy 0x00000001u
|
|
|
|
#define kNtFileMapWrite 0x00000002u
|
|
|
|
#define kNtFileMapRead 0x00000004u
|
|
|
|
#define kNtFileMapExecute 0x00000020u
|
|
|
|
#define kNtFileMapReserve 0x80000000u
|
2020-06-15 14:18:57 +00:00
|
|
|
#define kNtFileMapTargetsInvalid 0x40000000u
|
2020-11-28 20:01:51 +00:00
|
|
|
#define kNtFileMapLargePages 0x20000000u
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_NT_ENUM_FILEMAPFLAGS_H_ */
|