| 884 | EXTERN_C HMODULE __stdcall EraLoadLibraryExA(LPCSTR lpLibFileName, _Reserved_ HANDLE hFile, _In_ DWORD dwFlags) |
| 885 | { |
| 886 | USES_CONVERSION; |
| 887 | LPCWSTR LibName = A2W(lpLibFileName); |
| 888 | |
| 889 | static std::wstring convert{}; |
| 890 | std::wstring_view fileName(LibName); |
| 891 | |
| 892 | if (fileName.size() != 0 && fileName[0] == 'G' && fileName[1] == ':') |
| 893 | { |
nothing calls this directly
no test coverage detected