mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-02 20:28:54 +00:00
Merge pull request #7151 from connnnal/fix-loadlibraryex-flags
win32: LoadLibraryEx_Flags off-by-one
This commit is contained in:
@@ -3538,7 +3538,7 @@ LoadLibraryEx_Flag :: enum DWORD {
|
||||
LOAD_LIBRARY_SEARCH_DEFAULT_DIRS = 12, // 1 << 12: 0x1000,
|
||||
LOAD_LIBRARY_SAFE_CURRENT_DIRS = 13, // 1 << 13: 0x2000,
|
||||
}
|
||||
LoadLibraryEx_Flags :: distinct bit_set[LoadLibraryEx_Flag]
|
||||
LoadLibraryEx_Flags :: distinct bit_set[LoadLibraryEx_Flag; DWORD]
|
||||
|
||||
// https://docs.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-quota_limits
|
||||
// Used in LogonUserExW
|
||||
|
||||
Reference in New Issue
Block a user