diff options
Diffstat (limited to 'dep/CascLib/src/common/Common.h')
-rw-r--r-- | dep/CascLib/src/common/Common.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/dep/CascLib/src/common/Common.h b/dep/CascLib/src/common/Common.h index eb192fd50ca..40712b99eed 100644 --- a/dep/CascLib/src/common/Common.h +++ b/dep/CascLib/src/common/Common.h @@ -29,13 +29,6 @@ extern unsigned char AsciiToUpperTable[256]; extern unsigned char IntToHexChar[]; //----------------------------------------------------------------------------- -// Memory management helper - -#if defined(_MSC_VER) && defined(_DEBUG) -void * DbgRealloc(void * ptr, size_t nSize); -#endif - -//----------------------------------------------------------------------------- // GetLastError/SetLastError support for non-Windows platform #ifndef PLATFORM_WINDOWS @@ -57,7 +50,7 @@ TCHAR * NewStrFromAnsi(LPBYTE pbStringBegin, LPBYTE pbStringEnd); TCHAR * CombinePath(const TCHAR * szPath, const TCHAR * szSubDir); -void NormalizeFileName_UpperBkSlash(char * szFileName); +void NormalizeFileName_UpperBkSlash(const char * szSrcFileName, char * szTrgFileName); void NormalizeFileName_LowerSlash(char * szFileName); int ConvertDigitToInt32(const TCHAR * szString, PDWORD PtrValue); |