Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleВходные параметры

hGrd

хэндл, через который будет выполнена данная операция

pGrdSystemTime

указатель на структуру TGrdSystemTime:

typedef struct {
    WORD wYear; // The year (2000 - 2099)
    WORD wMonth; // The month (January = 1, February = 2, ...)
    WORD wDayOfWeek; // The day of the week (Sunday = 0, Monday = 1, ...)
    WORD wDay; // The day of the month (1-31)
    WORD wHour; // The hour (0-23)
    WORD wMinute; // The minute (0-59)
    WORD wSecond; // The second (0-59)
    WORD wMilliseconds; // The millisecond (0-999) 
} TGrdSystemTime;

pReserved

зарезервировано, должно быть равно NULL

...