diff options
| author | Jonas Welle <50463913+helloguysmaster@users.noreply.github.com> | 2021-10-16 10:43:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-16 10:43:33 -0400 |
| commit | 7c26b0abdb19fc616805f4de2c2dbbb5de52acb6 (patch) | |
| tree | 5a20ac5e4042b893d7840ae8da91fe77ac7ad358 | |
| parent | 3337d38651411b576a3a387396928d160de6d2f1 (diff) | |
add GetModuleHandleA
| -rw-r--r-- | core/sys/windows/kernel32.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/sys/windows/kernel32.odin b/core/sys/windows/kernel32.odin index 94ba191e0..8c58fbd52 100644 --- a/core/sys/windows/kernel32.odin +++ b/core/sys/windows/kernel32.odin @@ -209,6 +209,7 @@ foreign kernel32 { FindNextFileW :: proc(findFile: HANDLE, findFileData: LPWIN32_FIND_DATAW) -> BOOL --- FindClose :: proc(findFile: HANDLE) -> BOOL --- GetModuleHandleW :: proc(lpModuleName: LPCWSTR) -> HMODULE --- + GetModuleHandleA :: proc(lpModuleName: LPCSTR) -> HMODULE --- GetSystemTimeAsFileTime :: proc(lpSystemTimeAsFileTime: LPFILETIME) --- CreateEventW :: proc( lpEventAttributes: LPSECURITY_ATTRIBUTES, |