| 159 | |
| 160 | |
| 161 | int GetPathDisk(const wchar *Path) |
| 162 | { |
| 163 | if (IsDriveLetter(Path)) |
| 164 | return etoupperw(*Path)-'A'; |
| 165 | else |
| 166 | return -1; |
| 167 | } |
| 168 | |
| 169 | |
| 170 | void AddEndSlash(wchar *Path,size_t MaxLength) |
nothing calls this directly
no test coverage detected