diff options
author | Ladislav Zezula <zezula@volny.cz> | 2024-03-07 17:46:27 +0100 |
---|---|---|
committer | Ladislav Zezula <zezula@volny.cz> | 2024-03-07 17:46:27 +0100 |
commit | dbe502676f27ac8510a52ff7b3ab8e03e81179fe (patch) | |
tree | df23ed9d3cd804ab40e6c9c20c3698b3938dc834 /src/StormCommon.h | |
parent | 98aff2cdec461c77688ef4e954e492e6c04ae34e (diff) |
+ Fixed regression tests
+ Refactored udage of UNICODE characters
+ Fixed regression tests on Linux
Diffstat (limited to 'src/StormCommon.h')
-rw-r--r-- | src/StormCommon.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/StormCommon.h b/src/StormCommon.h index c73543d..c050093 100644 --- a/src/StormCommon.h +++ b/src/StormCommon.h @@ -206,6 +206,7 @@ void StringCopy(TCHAR * szTarget, size_t cchTarget, const char * szSource); void StringCopy(char * szTarget, size_t cchTarget, const TCHAR * szSource);
void StringCopy(TCHAR * szTarget, size_t cchTarget, const TCHAR * szSource);
void StringCat(TCHAR * szTarget, size_t cchTargetMax, const TCHAR * szSource);
+void StringCat(TCHAR * szTarget, size_t cchTargetMax, const char * szSource);
#endif
//-----------------------------------------------------------------------------
|