Microsoft DirectX 9.0 |
The DVD_HMSF_TIMECODE structure encapsulates the hours, minutes, seconds, and frames in a DVD timecode.
Syntax
typedef struct tagDVD_HMSF_TIMECODE {
BYTE bHours;
BYTE bMinutes;
BYTE bSeconds;
BYTE bFrames;
} DVD_HMSF_TIMECODE;
Members
bHours
Hours.
bMinutes
Minutes.
bSeconds
Minutes.
bFrames
Frames.
Remarks
A DVD_HMSF_TIMECODE structure is for use with IDvdControl2 and IDvdInfo2. A DVD_HMSF_TIMECODE structure can be cast to or from a ULONG value. This means that if you need to use the old BCD time format for backward compatibility, you can do so in place of a DVD_HMSF_TIMECODE structure.
See Also