CString -> LPSTR로 변환
(LPSTR)(LPCSTR)
casting
MSDN 찾아보고 질문올리셨으리라 믿겠습니다. (LPSTR)(LPCTSTR) |
MFC의 CString을 char * 로 변환
1 2 3 4 5 6 7 8 9 10 | //CString -> char * CString str; str = "Hello" ; char * ss = LPSTR ( LPCTSTR (str)); //char * --> CString char ss[] = "Hello" ; CString str; str.Format( "%s" , ss); |
(Format대신에 GetBuffer()를 써도 됩니다.)
반응형
'차근차근 > C' 카테고리의 다른 글
win8 | vs2010 | tesseract-3.01 | leptonica-1.71 (0) | 2015.02.24 |
---|---|
GIMP실행하기 (0) | 2015.01.02 |
CString'에서 'const char *'로 변환문제 (0) | 2014.11.28 |
#error : WINDOWS.H already included. MFC apps must not #include <windows.h> (0) | 2014.11.26 |
전체파일 경로에서 파일명만 추출하기 (0) | 2014.11.25 |