--------------------------------------------------------------------------- ��� ������ ���� � ����� ?
| 75 | //--------------------------------------------------------------------------- |
| 76 | // ��� ������ ���� � ����� ? |
| 77 | bool IsFullPath(char * szName) |
| 78 | { |
| 79 | if( !szName ) |
| 80 | return false; |
| 81 | int l = strlen(szName); |
| 82 | if( l>3 ) |
| 83 | { |
| 84 | if( szName[0]=='\\' && szName[1]=='\\' ) |
| 85 | return true; |
| 86 | if( szName[1]==':' && szName[2]=='\\' ) |
| 87 | return true; |
| 88 | } |
| 89 | return false; |
| 90 | } |
| 91 | //--------------------------------------------------------------------------- |
| 92 | // ��� �������� ����� ? (�������� ? ��� *) |
| 93 | bool IsFileMask(char * szName) |
nothing calls this directly
no outgoing calls
no test coverage detected