| 903 | } |
| 904 | |
| 905 | std::wstring |
| 906 | SK_GetModuleFullNameFromAddr (LPCVOID addr) |
| 907 | { |
| 908 | HMODULE hModOut = |
| 909 | SK_GetModuleFromAddr (addr); |
| 910 | |
| 911 | if (hModOut != INVALID_HANDLE_VALUE && (intptr_t)hModOut > 0) |
| 912 | return SK_GetModuleFullName (hModOut); |
| 913 | |
| 914 | return |
| 915 | L"#Extremely#Invalid.dll#"; |
| 916 | } |
| 917 | |
| 918 | std::wstring |
| 919 | SK_MakePrettyAddress (LPCVOID addr, DWORD /*dwFlags*/) |
no test coverage detected