authorgravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2025-10-17 00:40:17-07:00
committergravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2025-10-17 00:40:17-07:00
log3eb3fbec9c455b4fcea144919ddcd0932cefb23a
treed145d978204a9e36a39e66e02e61e880c8cc2a82
parentf785e4745d85f7056ab670989c5739b62b0df265

windows: make FILE_DISPOSITION_ constants pub


1 files changed, 6 insertions(+), 6 deletions(-)

lib/std/os/windows.zig+6-6
......@@ -3129,12 +3129,12 @@ pub const FILE_DISPOSITION_INFORMATION_EX = extern struct {
31293129 Flags: ULONG,
31303130};
31313131
3132const FILE_DISPOSITION_DO_NOT_DELETE: ULONG = 0x00000000;
3133const FILE_DISPOSITION_DELETE: ULONG = 0x00000001;
3134const FILE_DISPOSITION_POSIX_SEMANTICS: ULONG = 0x00000002;
3135const FILE_DISPOSITION_FORCE_IMAGE_SECTION_CHECK: ULONG = 0x00000004;
3136const FILE_DISPOSITION_ON_CLOSE: ULONG = 0x00000008;
3137const FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE: ULONG = 0x00000010;
3132pub const FILE_DISPOSITION_DO_NOT_DELETE: ULONG = 0x00000000;
3133pub const FILE_DISPOSITION_DELETE: ULONG = 0x00000001;
3134pub const FILE_DISPOSITION_POSIX_SEMANTICS: ULONG = 0x00000002;
3135pub const FILE_DISPOSITION_FORCE_IMAGE_SECTION_CHECK: ULONG = 0x00000004;
3136pub const FILE_DISPOSITION_ON_CLOSE: ULONG = 0x00000008;
3137pub const FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE: ULONG = 0x00000010;
31383138
31393139// FILE_RENAME_INFORMATION.Flags
31403140pub const FILE_RENAME_REPLACE_IF_EXISTS = 0x00000001;