| 119 | } |
| 120 | |
| 121 | std::wstring kdmUtils::GetCurrentAppFolder() { |
| 122 | wchar_t buffer[1024]; |
| 123 | GetModuleFileNameW(NULL, buffer, 1024); |
| 124 | std::wstring::size_type pos = std::wstring(buffer).find_last_of(L"\\/"); |
| 125 | return std::wstring(buffer).substr(0, pos); |
| 126 | } |
nothing calls this directly
no outgoing calls
no test coverage detected