type | Meaning in MBCS builds | Meaning in Unicode builds |
---|---|---|
WCHAR | wchar_t | wchar_t |
LPSTR | char* | char* |
LPCSTR | const char* | const char* |
LPWSTR | wchar_t* | wchar_t* |
LPCWSTR | wchar_t* | wchar_t* |
TCHAR | TCHAR char | wchar_t |
LPTSTR | TCHAR* | TCHAR* |
LPCTSTR | const TCHAR* | const TCHAR* |
C++字符串及其指针类型定义
- Post link: https://ntifs.com/2020/10/01/C-字符串及其指针类型定义/
- Copyright Notice: All articles in this blog are licensed under BY-NC-SA unless stating additionally.