typedef struct _FTIME { /* ftime */
unsigned twosecs : 5;
unsigned minutes : 6;
unsigned hours : 5;
} FTIME;
twosecs
Specifies the seconds as if divided by 2. It must be in the range 0 to 29. A value of 1 represents 2 seconds, a value of 29 represents 59 seconds.
minutes
Specifies the minute in the hour. It must be a value in the range 0 to 59.
hours
Specifies the hour in the day. It must be a value in the range 0 to 23.