강제 casting이 이래서 필요하군요~~ㅠ

2015. 6. 4. 16:55IT-개발/winapi 및 MFC

반응형

 


int nValue = st64.st_size; // st64.st_size <= __int64

      CString strData;


strData.Format(L"stat-size : %d, GetFileSizeEx : %s, 한국에서 :%d", nValue, L"왜이럴까?", 1225);

SetDlgItemText(IDC_EDIT_GETFILESIZE_RESULT, strData);


// strData => stat-size : 91, GetFileSizeEx : 왜이럴까?, 한국에서 :1225


strData.Format(L"stat-size : %d, HsGetFileSizeEx : %s, 한국에서 :%d", st64.st_size, L"왜이럴까?", 1225);

SetDlgItemText(IDC_EDIT_GETFILESIZE_RESULT, strData);


// strData => stat-size : 91, GetFileSizeEx : (null), 한국에서 :21408956   (ㅎㅎ~~ 원인찾아한참 시간 쓰게됨~ㅠㅠ )


강제 casting도 빠먹지 말고 잘해줘야 겠어요~