| 79 | } |
| 80 | |
| 81 | bool is_relative(const ACE_TCHAR* path) |
| 82 | { |
| 83 | return !path[0] || |
| 84 | (path[1] != ACE_TEXT(':') && |
| 85 | (ACE_OS::strncmp(ACE_TEXT("\\\\?\\"), path, 4) != 0)); |
| 86 | } |
| 87 | |
| 88 | /// @returns \\?\<absolute_path> |
| 89 | ACE_WString to_win32_long_path(const ACE_TCHAR* path) |
no outgoing calls
no test coverage detected