home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / time / getctime.c next >
C/C++ Source or Header  |  1988-08-10  |  689b  |  32 lines

  1. /*
  2.  *
  3.  *  GetCurrentTime
  4.  *  
  5.  *  This program demonstrates the use of the function GetCurrentTime.
  6.  *  This function retrieves the current Window time.
  7.  *
  8.  *
  9.  */
  10.  
  11. #include <windows.h>
  12.  
  13. int PASCAL WinMain( hInstance, hPrevInstance, lpszCmdLine, cmdShow )
  14. HANDLE hInstance, hPrevInstance;
  15. LPSTR  lpszCmdLine;
  16. int    cmdShow;
  17. {
  18.   DWORD dwCurTime;
  19.   char szbuff[80];
  20.  
  21.   MessageBox (NULL, (LPSTR)"Getting current time", (LPSTR)"GetCurrentTime",
  22.      MB_OK);
  23.  
  24.   dwCurTime = GetCurrentTime ();
  25.  
  26.   sprintf ( szbuff, "The current time in milliseconds is %ld",
  27.      dwCurTime );
  28.   MessageBox (NULL, (LPSTR) szbuff, (LPSTR)"GetCurrentTime", MB_OK);
  29.  
  30.   return FALSE;
  31. }
  32.