我们先来看一段宏定义
#ifdef _UNICODE
#define LPCTSTR LPCWSTR
#else
#define LPCTSTR LPCSTR
#endif
#define LPCWSTR const wchar_t *
#define LPCSTR const char *
如果你的程序是多字节编译,那么LPCSTR和const char*是等价的。如果程序是Unicode的,LPCTSTR和const wchar_t*是等价的。
我们先来看一段宏定义
#ifdef _UNICODE
#define LPCTSTR LPCWSTR
#else
#define LPCTSTR LPCSTR
#endif
#define LPCWSTR const wchar_t *
#define LPCSTR const char *
如果你的程序是多字节编译,那么LPCSTR和const char*是等价的。如果程序是Unicode的,LPCTSTR和const wchar_t*是等价的。