We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 91b5cec + a0e2931 commit f3a52a6Copy full SHA for f3a52a6
core/sys/windows/kernel32.odin
@@ -168,6 +168,7 @@ foreign kernel32 {
168
ResumeThread :: proc(thread: HANDLE) -> DWORD ---
169
GetThreadPriority :: proc(thread: HANDLE) -> c_int ---
170
SetThreadPriority :: proc(thread: HANDLE, priority: c_int) -> BOOL ---
171
+ GetThreadDescription :: proc(hThread: HANDLE, ppszThreadDescription: ^PCWSTR) -> HRESULT ---
172
SetThreadDescription :: proc(hThread: HANDLE, lpThreadDescription: PCWSTR) -> HRESULT ---
173
GetExitCodeThread :: proc(thread: HANDLE, exit_code: ^DWORD) -> BOOL ---
174
TerminateThread :: proc(thread: HANDLE, exit_code: DWORD) -> BOOL ---
0 commit comments