From 54b818e9a7a0b73f90bf65747ee9c351a87a8959 Mon Sep 17 00:00:00 2001 From: Nick Aversano Date: Tue, 18 Aug 2026 11:19:04 -0400 Subject: [PATCH] fix FILE_NOTIFY_INFORMATION struct member casing --- core/sys/windows/types.odin | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/sys/windows/types.odin b/core/sys/windows/types.odin index b3efbdb34..c3d47ef95 100644 --- a/core/sys/windows/types.odin +++ b/core/sys/windows/types.odin @@ -2963,10 +2963,10 @@ FILE_END_OF_FILE_INFO :: struct { } FILE_NOTIFY_INFORMATION :: struct { - next_entry_offset: DWORD, - action: DWORD, - file_name_length: DWORD, - file_name: [1]WCHAR, + NextEntryOffset: DWORD, + Action: DWORD, + FileNameLength: DWORD, + FileName: [1]WCHAR, } REPARSE_DATA_BUFFER :: struct {