| 909 | { |
| 910 | static std::wstring convert{}; |
| 911 | std::wstring_view fileName(lpLibFileName); |
| 912 | |
| 913 | if (fileName[0] == 'G' && fileName[1] == ':' && fileName.size() != 0) |
| 914 | { |
| 915 | |
| 916 | static std::wstring trimPath{}; |
| 917 | trimPath = fileName.substr(2); |
| 918 | fileName = trimPath.data(); |
nothing calls this directly
no test coverage detected