diff --git a/lib/std/os/windows.zig b/lib/std/os/windows.zig index 4a2487c836..d422327295 100644 --- a/lib/std/os/windows.zig +++ b/lib/std/os/windows.zig @@ -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;