diff options
| author | VladPavliuk <pavliuk.vlad@gmail.com> | 2025-01-03 18:52:39 +0200 |
|---|---|---|
| committer | VladPavliuk <pavliuk.vlad@gmail.com> | 2025-01-03 18:52:39 +0200 |
| commit | 36b5ca9176990617c938e2b070981895be311bb0 (patch) | |
| tree | a8ab204d4f4468edcea1fd84d041c62b923c57b4 /core/sys/windows/kernel32.odin | |
| parent | 7989d512a09d1dd930459b3b0710f22b3def91f4 (diff) | |
Extend win32 types
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 8be50bceb..219b6b4fe 100644 --- a/core/sys/windows/kernel32.odin +++ b/core/sys/windows/kernel32.odin @@ -239,6 +239,10 @@ foreign kernel32 { hThread: HANDLE, lpContext: LPCONTEXT, ) -> BOOL --- + SetThreadContext :: proc( + hThread: HANDLE, + lpContext: LPCONTEXT, + ) -> BOOL --- CreateProcessW :: proc( lpApplicationName: LPCWSTR, lpCommandLine: LPWSTR, |