DosSetDateTime

DosSetDateTime

DATETIME struc
 
  date_hours      db  ? ;current hour
  date_minutes    db  ? ;current minute
  date_seconds    db  ? ;current second
  date_hundredths db  ? ;current hundredths of a second
  date_day        db  ? ;current day
  date_month      db  ? ;current month
  date_year       dw  ? ;current year
  date_timezone   dw  ? ;minutes of time west of UTC
  date_weekday    db  ? ;current day of week
 
DATETIME ends

EXTRN  DosSetDateTime:FAR
INCL_DOSDATETIME    EQU 1

PUSH@  OTHER   DateTime      ;Date/time structure
CALL   DosSetDateTime

Returns WORD


[Back: DosSetCp]
[Next: DosSetFHandState]