authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-12-19 10:02:27-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-12-23 22:15:11-08:00
log07c4ea2de0fa9246bec3c1ed9f7c2c57e4b25893
treedcb5bf80cf3153b81c53ca11ade364c18bc323e0
parentedcbd7ed2c75c425a7ea316ecfb41c7d267f83c7

all comments are notes, and use doc comments where possible


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

lib/std/os/windows.zig+4-4
......@@ -215,10 +215,10 @@ pub const FILE = struct {
215215 AccessFlags: ACCESS_MASK,
216216 };
217217
218 // Note: This is not separated into RENAME_INFORMATION and RENAME_INFORMATION_EX because
219 // the only difference is the `Flags` type (BOOLEAN before _EX, ULONG in the _EX),
220 // which doesn't affect the struct layout--the offset of RootDirectory is the same
221 // regardless.
218 /// This is not separated into RENAME_INFORMATION and RENAME_INFORMATION_EX because
219 /// the only difference is the `Flags` type (BOOLEAN before _EX, ULONG in the _EX),
220 /// which doesn't affect the struct layout--the offset of RootDirectory is the same
221 /// regardless.
222222 pub const RENAME_INFORMATION = extern struct {
223223 Flags: FLAGS,
224224 RootDirectory: ?HANDLE,