char* 到 LPCTSTR 转换
char *m_str = "test!";
MessageBoxW(CString(m_str));
CString to LPCTSTR
CString s( "abcd" );
LPTSTR p = s.GetBuffer( );
char* 到 LPCTSTR 转换
char *m_str = "test!";
MessageBoxW(CString(m_str));
CString to LPCTSTR
CString s( "abcd" );
LPTSTR p = s.GetBuffer( );