CTime::GetAsSystemTime
변환 시간 정보를 저장 하려면이 멤버 함수를 호출 하는 CTime 개체에는 Win32–compatible SYSTEMTIME 구조.
bool GetAsSystemTime(
SYSTEMTIME& st
) const throw( );
매개 변수
- timeDest
참조 하는 SYSTEMTIME 변환 된 날짜/시간 값을 보유 하는 구조는 CTime 개체.
반환 값
성공 하면 true입니다. 그렇지 않으면 false입니다.
설명
GetAsSystemTime결과 시간 참조에 저장 timeDest 구조.SYSTEMTIME 이 함수에서 초기화 된 데이터 구조를 갖게 그 wMilliseconds 멤버를 0으로 설정 합니다.
예제
// Convert CTime to FILETIME
CTime time(CTime::GetCurrentTime());
SYSTEMTIME timeDest;
time.GetAsSystemTime(timeDest);
FILETIME fileTime;
::SystemTimeToFileTime(&timeDest, &fileTime);
요구 사항
헤더: atltime.h