Date

Started by
1 comment, last by vbisme 22 years, 5 months ago
What functions return the current date and time?
Advertisement
Since you didn''t say what language, I''ll assume you are talking about C ...
http://www.lysator.liu.se/c/rat/d12.html#4-12
ReactOS - an Open-source operating system compatible with Windows NT apps and drivers
When usin msvc6 try

VOID GetSystemTime(
LPSYSTEMTIME lpSystemTime // system time
);

typedef struct _SYSTEMTIME {
WORD wYear;
WORD wMonth;
WORD wDayOfWeek;
WORD wDay;
WORD wHour;
WORD wMinute;
WORD wSecond;
WORD wMilliseconds;
} SYSTEMTIME, *PSYSTEMTIME;

This topic is closed to new replies.

Advertisement