Get_Date
Description
DWORD Get_Date();
This function returns the current date.
DWORD dw; WORD year, month, day; dw = Get_Date(); year = HIWORD(dw); month = HIBYTE(LOWORD(dw)); day = LOBYTE(LOWORD(dw));
Note
See the example for an explanation how to get the date.
See Also
Get_Time
Get_Time
Description
DWORD Get_Time();
Note
The accuracy of this time measurement is 1 ms. This function is typically used to measure the duration of some events/actions.
See Also
Get_Date