| 1621 | } |
| 1622 | |
| 1623 | bool IsInternalMpqFileName(const char * szFileName) |
| 1624 | { |
| 1625 | if(szFileName != NULL && szFileName[0] == '(') |
| 1626 | { |
| 1627 | if(!_stricmp(szFileName, LISTFILE_NAME) || |
| 1628 | !_stricmp(szFileName, ATTRIBUTES_NAME) || |
| 1629 | !_stricmp(szFileName, SIGNATURE_NAME)) |
| 1630 | { |
| 1631 | return true; |
| 1632 | } |
| 1633 | } |
| 1634 | |
| 1635 | return false; |
| 1636 | } |
| 1637 | |
| 1638 | // Verifies if the file name is a pseudo-name |
| 1639 | bool IsPseudoFileName(const char * szFileName, DWORD * pdwFileIndex) |