Skip to content

Commit be996fa

Browse files
committed
SMX_String now supports Unicode compilation
1 parent b4ce5c9 commit be996fa

9 files changed

+2799
-2509
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
[Dd]ebugPublic/
1818
[Rr]elease/
1919
[Rr]eleases/
20+
UnicodeDebug/
21+
Unicode/Release/
2022
x64/
2123
x86/
2224
bld/

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,12 @@ There are a few details that you should be aware of, or otherwise the **will** b
8484
- Take good care of the “Advanced project settings” in Visual Studio. Especially the “Use MFC” setting;
8585
- Take good care of the standard precompiled header settings and any ‘stdafx.h’ that is still in use in your projects. I forgot about them in a good number of projects. Remove the “#include <afx.h>” and other settings or convert to the newer convention of using a “pch.h” file.
8686

87+
### August 2023
88+
89+
This library now supports compilation in Unicode-mode or in standard MBCS-mode
90+
Choose either one, but be carefull to use the Microsft agreed upon standards to use:
91+
TCHAR (instead of char), LPCTSTR (instead of 'const char*'), and std::wstring (instead of std::string)
92+
8793
Well that’s about all. Have fun with the “SMX_String”!
8894

8995

0 commit comments

Comments
 (0)