//+----------------------------------------------------------------------- // // Microsoft Windows // // Copyright (c) Microsoft Corporation 1991 - 1992 // // File: gettime.c // // Contents: Getting time // // // History: Created // //------------------------------------------------------------------------ #include #include #include #include #ifndef SECURITY_WIN32 #define SECURITY_WIN32 #endif // SECURITY_WIN32 #include #include //+------------------------------------------------------------------------- // // Function: GetCurrentTimeStamp // // Synopsis: Gets current time, UTC format. // // Effects: // // Arguments: // // Requires: // // Returns: // // Notes: // //-------------------------------------------------------------------------- void GetCurrentTimeStamp( PLARGE_INTEGER ptsCurrentTime) { (void) NtQuerySystemTime(ptsCurrentTime); }