CString cmd;
BYTE* temp;
cmd = "123456";
temp = new BYTE[cmd.GetLength()+1];
temp = (BYTE*)(LPCTSTR)cmd; // (BYTE*) = (LPBYTE)
delete []temp;
'MFC > 문자' 카테고리의 다른 글
LPSTR <=> LPCTSTR 변환 (0) | 2013.02.26 |
---|
CString cmd;
BYTE* temp;
cmd = "123456";
temp = new BYTE[cmd.GetLength()+1];
temp = (BYTE*)(LPCTSTR)cmd; // (BYTE*) = (LPBYTE)
delete []temp;
LPSTR <=> LPCTSTR 변환 (0) | 2013.02.26 |
---|