Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/**************************************************************************************************
FILENAME: GetTime.h
COPYRIGHT� 2001 Microsoft Corporation and Executive Software International, Inc.
DESCRIPTION: Prototypes for the file-system time fetcher.
**************************************************************************************************/
//Returns the current system time in FILETIME format.
BOOL GetTime( FILETIME* pFileTime );
// This routine returns a formatted time string for output.
PTCHAR GetTmpTimeString( SYSTEMTIME & pTime );
// This routine returns the number of seconds between two system times.
BOOL GetDeltaTime( SYSTEMTIME * pStartTime, SYSTEMTIME * pEndTime, DWORD * pdwSeconds );
|