MSC: void _dos_gettime( struct dostime_t *time )
- prototype in dos.h
- returns DOS time into "time"
struct dostime_t
{
unsigned char hour; - [0-23]
unsigned char minute; - [0-59]
unsigned char second; - [0-59]
unsigned char hsecond; - hundreths of a second 0-99
};
- Turbo C uses gettime()
- see _dos_setttime()
|
|