CoFileTimeToDosDateTime   {bmc bm0.BMP}G3F5T_

Converts a FILETIMEJS0WA_ into MS-DOS date and time values.

BOOL CoFileTimeToDosDateTime(

    FILETIME  * lpFileTime,

//Pointer to the structure to be converted

    LPWORD lpDosDate,

//Pointer to the 16-bit MS-DOS date

    LPWORD lpDosTime

//Pointer to the 16-bit MS-DOS time

   );

 

 

Parameters

lpFileTime

[in] Pointer to the FILETIMEJS0WA_ structure to be converted.

lpDosDate

[out] Pointer to the 16-bit MS-DOS date.

lpDosTime

[out] Pointer to the 16-bit MS-DOS time.

 

Return Values

TRUE

The FILETIME structure was converted successfully.

FALSE

The FILETIME structure was not converted successfully.

 

Remarks

This is the inverse of the operation provided by the CoDosDateTimeToFileTime1XUPO7 function.

See Also

CoDosDateTimeToFileTime, CoFileTimeNow