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

Function SK_GetThreadDescription

src/thread.cpp:83–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81}
82
83HRESULT
84WINAPI
85SK_GetThreadDescription ( _In_ HANDLE hThread,
86 _Outptr_result_z_ PWSTR* ppszThreadDescription )
87{
88 SK_RunOnce ( GetThreadDescription_Impl =
89 (decltype (GetThreadDescription_Impl)) SK_GetProcAddress (L"kernel32",
90 "GetThreadDescription")
91 );
92
93 if (GetThreadDescription_Impl != nullptr)
94 return GetThreadDescription_Impl (hThread, ppszThreadDescription);
95
96 return
97 E_NOTIMPL;
98}
99
100static std::wstring _noname = L"";
101

Callers 3

Calls 2

SK_RunOnceFunction · 0.85
SK_GetProcAddressFunction · 0.85

Tested by

no test coverage detected