diff options
author | Shauren <shauren.trinity@gmail.com> | 2019-10-29 19:01:39 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2019-10-29 19:01:39 +0100 |
commit | c7b41574376c21eb37ed6d45dc4f1b3bf1b528c4 (patch) | |
tree | d14503fb201a38ea913627a7b00a8fd395e3a2a9 /dep/CascLib/src/common/Common.h | |
parent | 4328e1dfb2ba0900e6a053622f16da1cd5debc9b (diff) |
Dep/CascLib: Update to ladislav-zezula/CascLib@225777494069b0b0e18bea3ffeb3773d44a70b30
Diffstat (limited to 'dep/CascLib/src/common/Common.h')
-rw-r--r-- | dep/CascLib/src/common/Common.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/dep/CascLib/src/common/Common.h b/dep/CascLib/src/common/Common.h index d32202413ba..ddf8e136c9b 100644 --- a/dep/CascLib/src/common/Common.h +++ b/dep/CascLib/src/common/Common.h @@ -438,17 +438,11 @@ bool CascVerifyDataBlockHash(void * pvDataBlock, DWORD cbDataBlock, LPBYTE expec //----------------------------------------------------------------------------- // Scanning a directory -typedef bool (*INDEX_FILE_FOUND)(const TCHAR * szFileName, PDWORD IndexArray, PDWORD OldIndexArray, void * pvContext); +typedef bool (*INDEX_FILE_FOUND)(LPCTSTR szFileName, void * pvContext); -bool DirectoryExists(const TCHAR * szDirectory); +bool DirectoryExists(LPCTSTR szDirectory); -int ScanIndexDirectory( - const TCHAR * szIndexPath, - INDEX_FILE_FOUND pfnOnFileFound, - PDWORD IndexArray, - PDWORD OldIndexArray, - void * pvContext - ); +int ScanIndexDirectory(LPCTSTR szIndexPath, INDEX_FILE_FOUND pfnOnFileFound, void * pvContext); //----------------------------------------------------------------------------- // Argument structure versioning |