|   | 
      
        
          The SYSTEMTIME structure represents a date and time using
          individual members for the month, day, year, weekday, hour, minute,
          second, and millisecond. 
         
        
        
          
typedef struct _SYSTEMTIME
{
    WORD wYear; 
    WORD wMonth; 
    WORD wDayOfWeek; 
    WORD wDay; 
    WORD wHour; 
    WORD wMinute; 
    WORD wSecond; 
    WORD wMilliseconds; 
} SYSTEMTIME, *LPSYSTEMTIME;
         
        Members
        
          
            - wYear
 
            - Specifies the current year. The year value must be greater than
            1601.
 
            - wMonth
 
            - Specifies the current month. January is 1, February is 2 and so
            on.
 
            - wDayOfWeek
 
            - Specifies the current day of the week. Sunday is 0, Monday is 1
            and so on.
 
            - wDay
 
            - Specifies the current day of the month
 
            - wHour
 
            - Specifies the current hour.
 
            - wMinute
 
            - Specifies the current minute
 
            - wSecond
 
            - Specifies the current second.
 
            - wMilliseconds
 
            - Specifies the current millisecond.
 
           
         
        Requirements
        
          Minimum Desktop Platform: Windows 7 Service Pack 1 
          Minimum Server Platform: Windows Server 2008 R2 Service Pack 1 
          Header File: windows.h. 
         
       | 
        |