diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2024-04-04 17:00:29 +0200 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2024-04-04 17:09:12 +0200 |
| commit | 1af84e082c12b620a77396211cdbfc30adaecd25 (patch) | |
| tree | af99a93228b37ab29c1d1cff251586aa6e67ef39 /core/sys/windows/kernel32.odin | |
| parent | 5fe0788cffcbcfd153ea23954b5a11a853ef50b4 (diff) | |
add some wsa based additions to `core:sys/windows`
Diffstat (limited to 'core/sys/windows/kernel32.odin')
| -rw-r--r-- | core/sys/windows/kernel32.odin | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/sys/windows/kernel32.odin b/core/sys/windows/kernel32.odin index 952d5bb31..cc5f2b188 100644 --- a/core/sys/windows/kernel32.odin +++ b/core/sys/windows/kernel32.odin @@ -545,6 +545,10 @@ FILE_MAP_RESERVE :: DWORD(0x80000000) FILE_MAP_TARGETS_INVALID :: DWORD(0x40000000) FILE_MAP_LARGE_PAGES :: DWORD(0x20000000) +// Flags for `SetFileCompletionNotificationModes`. +FILE_SKIP_COMPLETION_PORT_ON_SUCCESS :: 0x1 +FILE_SKIP_SET_EVENT_ON_HANDLE :: 0x2 + PAGE_NOACCESS :: 0x01 PAGE_READONLY :: 0x02 PAGE_READWRITE :: 0x04 |