반응형
OutputDebugString CString 의 범위가 넘어도 출력하기
OutputDebugString(strQuery.Mid(0, 1024) + _T("\n"));
if(strQuery.GetLength() > 1024) OutputDebugString(strQuery.Mid(1023, strQuery.GetLength()-1024) + _T("\n"));
OutputDebugString(strQuery.Mid(0, 1024) + _T("\n"));
if(strQuery.GetLength() > 1024) OutputDebugString(strQuery.Mid(1023, strQuery.GetLength()-1024) + _T("\n"));