MCPcopy Create free account
hub / github.com/SpecialKO/SpecialK / SK_SetThreadDescription

Function SK_SetThreadDescription

src/thread.cpp:66–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64}
65
66HRESULT
67WINAPI
68SK_SetThreadDescription ( _In_ HANDLE hThread,
69 _In_ PCWSTR lpThreadDescription )
70{
71 SK_RunOnce ( SetThreadDescription_Impl =
72 (decltype (SetThreadDescription_Impl)) SK_GetProcAddress (L"kernel32",
73 "SetThreadDescription")
74 );
75
76 if (SetThreadDescription_Impl != nullptr)
77 return SetThreadDescription_Impl (hThread, lpThreadDescription);
78
79 return
80 E_NOTIMPL;
81}
82
83HRESULT
84WINAPI

Callers 7

SK_ShellExecuteWFunction · 0.85
SK_ShellExecuteAFunction · 0.85
SK_GPUPollingThreadFunction · 0.85
thread.hFile · 0.85

Calls 2

SK_RunOnceFunction · 0.85
SK_GetProcAddressFunction · 0.85

Tested by

no test coverage detected