SYSTEMTIME構造体

宣言文
Type SYSTEMTIME
        wYear As Integer            現在の年
        wMonth As Integer           月(1月=1, 2月=2 ...)
        wDayOfWeek As Integer       曜日(日=0, 月=1 ...)
        wDay As Integer             日
        wHour As Integer            時
        wMinute As Integer          分
        wSecond As Integer          秒
        wMilliseconds As Integer    ミリ秒
End Type
Structure SYSTEMTIME
        wYear As Short            現在の年
        wMonth As Short           月(1月=1, 2月=2 ...)
        wDayOfWeek As Short       曜日(日=0, 月=1 ...)
        wDay As Short             日
        wHour As Short            時
        wMinute As Short          分
        wSecond As Short          秒
        wMilliseconds As Short    ミリ秒
End Structure