mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
windows: make FILE_DISPOSITION_ constants pub
This commit is contained in:
parent
f785e4745d
commit
3eb3fbec9c
1 changed files with 6 additions and 6 deletions
|
|
@ -3129,12 +3129,12 @@ pub const FILE_DISPOSITION_INFORMATION_EX = extern struct {
|
|||
Flags: ULONG,
|
||||
};
|
||||
|
||||
const FILE_DISPOSITION_DO_NOT_DELETE: ULONG = 0x00000000;
|
||||
const FILE_DISPOSITION_DELETE: ULONG = 0x00000001;
|
||||
const FILE_DISPOSITION_POSIX_SEMANTICS: ULONG = 0x00000002;
|
||||
const FILE_DISPOSITION_FORCE_IMAGE_SECTION_CHECK: ULONG = 0x00000004;
|
||||
const FILE_DISPOSITION_ON_CLOSE: ULONG = 0x00000008;
|
||||
const FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE: ULONG = 0x00000010;
|
||||
pub const FILE_DISPOSITION_DO_NOT_DELETE: ULONG = 0x00000000;
|
||||
pub const FILE_DISPOSITION_DELETE: ULONG = 0x00000001;
|
||||
pub const FILE_DISPOSITION_POSIX_SEMANTICS: ULONG = 0x00000002;
|
||||
pub const FILE_DISPOSITION_FORCE_IMAGE_SECTION_CHECK: ULONG = 0x00000004;
|
||||
pub const FILE_DISPOSITION_ON_CLOSE: ULONG = 0x00000008;
|
||||
pub const FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE: ULONG = 0x00000010;
|
||||
|
||||
// FILE_RENAME_INFORMATION.Flags
|
||||
pub const FILE_RENAME_REPLACE_IF_EXISTS = 0x00000001;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue