Language/C
CString to __int64
우럭망둥이
2013. 1. 29. 13:52
한참을 고생햇다 항상 그렇지만...
CString 을 __int64로 변경하고 싶어졌다.
그래서 찾아보니 _tcstoui64 라는 녀석이 있더라
이녀석은 유니코드 캐릭터 CString 을 __int64로 변경 해 준다.
unsigned __int64 fileSize = _tcstoui64(resultStr, NULL, 10);
printf("%I64d------><\n", fileSize);
이 외의 함수들은 MSDN에서...
http://msdn.microsoft.com/en-us/library/85zk715d%28v=vs.80%29.aspx