mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-23 21:41:34 +00:00
Merge pull request #7374 from nickav/nickav/fix-windows-file-notify-casing
fix FILE_NOTIFY_INFORMATION struct member casing
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user