Created
February 24, 2015 14:59
-
-
Save mirjalal/0fd34d0d1fff1d62b7fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LPCSTR is a const string | |
exp: i.e. 'const char*' | |
LPCTSTR is a const TCHAR string, (TCHAR being either a wide char or char depending on whether UNICODE is defined) | |
exp: i.e. 'const WCHAR*' , (WCHAR : Unicode character) | |
LPTSTR is a (non-const) TCHAR string | |
i.e. 'TCHAR*' (TCHAR : MBCS or Unicode character depending on preprocessor settings) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment