CTime::GetAsSystemTime
调用该成员函数将对Win32兼容 SYSTEMTIME 结构的 CTime 对象存储的时间信息。
bool GetAsSystemTime(
SYSTEMTIME& st
) const throw( );
参数
- timeDest
对于将表示 CTime 对象的翻译日期/时间值的 SYSTEMTIME 结构的引用。
返回值
True,如果成功;否则为false。
备注
GetAsSystemTime 所引用的 timeDest 结构存储发生的时间。 此函数初始化的 SYSTEMTIME 数据结构让其 wMilliseconds 成员设置为零。
示例
// Convert CTime to FILETIME
CTime time(CTime::GetCurrentTime());
SYSTEMTIME timeDest;
time.GetAsSystemTime(timeDest);
FILETIME fileTime;
::SystemTimeToFileTime(&timeDest, &fileTime);
要求
Header: atltime.h