카테고리

  • 안드로이드
  • IOS
  • MFC
  • JAVA
  • AWS
  • LAMP
  • 여행&사진
  • 이런저런생활
  • 2015년 8월 13일 목요일

    MFC CString에서 LPCTSTR변환

    CString str = _T("Hello");
    LPCTSTR tmpSTR;

    tmpSTR = (LPCTSTR) str;
    tmpSTR = str.GetBuffer();
    tmpSTR = (LPCTSTR) str.GetBuffer();

    Return값이 CString인 함수를 직접받으면 변환이 안됨
    예)
    CString GetString()
    {
     CString str = _T("Hello");
     return str;
    }

    LPCTSTR tmpSTR;
    tmpSTR = GetString();    <- 글자가 깨져서 들어가게 됨.

    댓글 없음 :

    댓글 쓰기