| 64 | } |
| 65 | |
| 66 | HRESULT |
| 67 | WINAPI |
| 68 | SK_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 | |
| 83 | HRESULT |
| 84 | WINAPI |
no test coverage detected