본문 바로가기
공부하며놀자/프로그래밍

CString to LPARAM

by 테너토너 2014. 6. 24.


CString strTmp = "something in here";

int strLen = strTmp.GetLength();

char* chtmp = new char[strLen+1];

sprintf_s(chtmp,MAX_BUFFER_SIZE,strTmp);

반응형

댓글