| 38 | void DosSlashToUnix(const wchar *SrcName,wchar *DestName,size_t MaxLength); |
| 39 | |
| 40 | inline void SlashToNative(const char *SrcName,char *DestName,size_t MaxLength) |
| 41 | { |
| 42 | #ifdef _WIN_ALL |
| 43 | UnixSlashToDos(SrcName,DestName,MaxLength); |
| 44 | #else |
| 45 | DosSlashToUnix(SrcName,DestName,MaxLength); |
| 46 | #endif |
| 47 | } |
| 48 | |
| 49 | inline void SlashToNative(const wchar *SrcName,wchar *DestName,size_t MaxLength) |
| 50 | { |
no test coverage detected