msos2.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
FTIME (1.2)
                                                      Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
#define INCL_DOSFILEMGR
 
typedef struct _FTIME {    /* ftime */
    unsigned twosecs : 5;
    unsigned minutes : 6;
    unsigned hours   : 5;
} FTIME;
 
The FTIME structure contains the time in seconds, minutes, and hours.
 
Field    Description
────────────────────────────────────────────────────────────────────────────
 
twosecs  Specifies the number of seconds divided by two. To get the actual
         value, you must multiply it by two. For example, a value of 1
         specifies 2 seconds, a value of 2 specifies 4 seconds, and so on.
 
minutes  Specifies the minutes.
 
hours    Specifies the hours.
 
See Also
 
FILEFINDBUF, FILESTATUS