ds = DateStamp( ds );
D0 D1
struct DateStamp *DateStamp(struct DateStamp *)
DateStamp() takes a structure of the same name and fills it in:
struct DateStamp {
LONG ds_Days;
LONG ds_Minute;
LONG ds_Tick;
};
The first element (ds_Days) is a count of the number of days since January 1, 1978. The second element (ds_Minute) is the number of minutes elapsed in the day, past midnight. The third (ds_Tick) is the number of ticks elapsed in the current minute.
A tick happens 50 times a second. Note that the number of ticks per second is a preset constant and not in any way affected by the display refresh rate (vertical blanking frequency) or the AC power supply frequency.
DateStamp() ensures that the day and minute are consistent. All three elements are zero if the date is unset.
The DateStamp structure is filled as described and its address is returned (for pre-V36 compatibility).