---------------------------------------------------------------------------
| 398 | } |
| 399 | //--------------------------------------------------------------------------- |
| 400 | bool IsPath(char * szName) |
| 401 | { |
| 402 | if( !szName ) return false; |
| 403 | int i = lstrlen(szName); |
| 404 | for(i--; i>0; i--) |
| 405 | { |
| 406 | if( szName[i]==':' || szName[i]=='\\' ) return true; |
| 407 | } |
| 408 | return false; |
| 409 | } |
| 410 | //--------------------------------------------------------------------------- |
| 411 | String TFile::GetErrorMessage(void) |
| 412 | { |
nothing calls this directly
no outgoing calls
no test coverage detected