| 562 | |
| 563 | |
| 564 | bool IsFullPath(const wchar *Path) |
| 565 | { |
| 566 | /* |
| 567 | wchar PathOnly[NM]; |
| 568 | GetFilePath(Path,PathOnly,ASIZE(PathOnly)); |
| 569 | if (IsWildcard(PathOnly)) |
| 570 | return true; |
| 571 | */ |
| 572 | #if defined(_WIN_ALL) || defined(_EMX) |
| 573 | return Path[0]=='\\' && Path[1]=='\\' || IsDriveLetter(Path) && IsPathDiv(Path[2]); |
| 574 | #else |
| 575 | return IsPathDiv(Path[0]); |
| 576 | #endif |
| 577 | } |
| 578 | |
| 579 | |
| 580 | bool IsFullRootPath(const wchar *Path) |
no test coverage detected