int GRD_API GrdSetTime(
HANDLE hGrd,
TGrdSystemTime *pGrdSystemTime,
void *pReserved
);
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;