| 118 | static FILE* g_DebugLogFile = nullptr; |
| 119 | |
| 120 | int WINAPI |
| 121 | CryptCaseStreamsCallback(PWIN32_FIND_STREAM_DATA pfdata, LPCWSTR encrypted_name, |
| 122 | unordered_map<wstring, wstring> *pmap) { |
| 123 | wstring stream_without_type; |
| 124 | wstring type; |
| 125 | |
| 126 | remove_stream_type(pfdata->cStreamName, stream_without_type, type); |
| 127 | |
| 128 | wstring uc_stream; |
| 129 | |
| 130 | touppercase(stream_without_type.c_str(), uc_stream); |
| 131 | |
| 132 | pmap->insert(make_pair(uc_stream, stream_without_type.c_str())); |
| 133 | |
| 134 | return 0; |
| 135 | } |
| 136 | |
| 137 | |
| 138 | static bool GetUserNameFromDokanFileInfo(PDOKAN_FILE_INFO DokanFileInfo, wstring& user, wstring& domain) |
nothing calls this directly
no test coverage detected