본문 바로가기
개발언어/C++

OutputDebugString CString 의 범위가 넘어도 출력하기

by 엔돌슨 2010. 8. 6.
반응형
OutputDebugString CString 의 범위가 넘어도 출력하기


OutputDebugString(strQuery.Mid(0, 1024) + _T("\n"));
if(strQuery.GetLength() > 1024) OutputDebugString(strQuery.Mid(1023, strQuery.GetLength()-1024) + _T("\n"));