void hw_GetDateStamp(struct hwos_DateStruct *stamp);
struct hwos_DateStruct pointer passed as parameter 1. struct hwos_DateStruct
looks like this:
struct hwos_DateStruct
{
int Seconds;
int Minutes;
int Hours;
int Day;
int Month;
int Year;
};
|
hw_GetDateStamp() will initialize the individual members as follows:
Seconds:
Minutes:
Hours:
Day:
Month:
Year:If you want to query the current date in a human-readable format, please use the hw_GetDate() function instead. See hw_GetDate for details.
struct hwos_DateStruct