CTime::GetTime

Syntax

time_t GetTime() const;

Remarks

Returns a time_t value for the given CTime object.

Example

CTime t( 1999, 3, 19, 22, 15, 0 ); // 10:15PM March 19, 1999

time_t osBinaryTime = t.GetTime(); // time_t defined in <time.h>

printf( "time_t = %ld\\n", osBinaryTime );

See Also

CTime constructors