超级版主
注册日期: 04-03
帖子: 18592
精华: 36
现金: 249466 标准币
资产: 1080358888 标准币
|
使用CTIME在Realease版调试中的错误
ATLTIME_INLINE BOOL WINAPI CTime::IsValidFILETIME(const FILETIME& fileTime) throw()
{
FILETIME localTime;
if (!FileTimeToLocalFileTime(&fileTime, &localTime))
{
return FALSE;
}
// then convert that time to system time
SYSTEMTIME sysTime;
if (!FileTimeToSystemTime(&localTime, &sysTime))
{
return FALSE;
}
return TRUE;
}
|