diff options
| author | gingerBill <bill@gingerbill.org> | 2023-09-19 15:12:50 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-09-19 15:12:50 +0100 |
| commit | ecde06e3a31179bd8f86383fd65cfbce31ab6d9a (patch) | |
| tree | c95dffc47f4dac2752943ddecba15496b706b979 /core/sys/windows/kernel32.odin | |
| parent | 3505c1d790ee0f05ed14e6b96121f16e6ffb75f4 (diff) | |
| parent | 150a72f75e551f0d46c8ecd87937faa174e9b4e4 (diff) | |
Merge branch 'master' of https://github.com/odin-lang/Odinwindows-llvm-12.0.1
Diffstat (limited to 'core/sys/windows/kernel32.odin')
| -rw-r--r-- | core/sys/windows/kernel32.odin | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/sys/windows/kernel32.odin b/core/sys/windows/kernel32.odin index 2b63595a4..0c612a974 100644 --- a/core/sys/windows/kernel32.odin +++ b/core/sys/windows/kernel32.odin @@ -132,6 +132,21 @@ foreign kernel32 { SetThreadPriority :: proc(thread: HANDLE, priority: c_int) -> BOOL --- GetExitCodeThread :: proc(thread: HANDLE, exit_code: ^DWORD) -> BOOL --- TerminateThread :: proc(thread: HANDLE, exit_code: DWORD) -> BOOL --- + SuspendThread :: proc(hThread: HANDLE) -> DWORD --- + + GetProcessAffinityMask :: proc( + hProcess: HANDLE, + lpProcessAffinityMask: PDWORD_PTR, + lpSystemAffinityMask: PDWORD_PTR, + ) -> BOOL --- + SetProcessAffinityMask :: proc( + hProcess: HANDLE, + dwProcessAffinityMask: DWORD_PTR, + ) -> BOOL --- + SetThreadAffinityMask :: proc( + hThread: HANDLE, + dwThreadAffinityMask: DWORD_PTR, + ) -> DWORD_PTR --- CreateSemaphoreW :: proc(attributes: LPSECURITY_ATTRIBUTES, initial_count, maximum_count: LONG, name: LPCWSTR) -> HANDLE --- ReleaseSemaphore :: proc(semaphore: HANDLE, release_count: LONG, previous_count: ^LONG) -> BOOL --- |