Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
Defines units of 100 nanoseconds.
typedef LONGLONG MFTIME;
Examples
const MFTIME ONE_SECOND = 10000000; // One second.
const LONG ONE_MSEC = 1000; // One millisecond
// Convert 100-nanosecond units to milliseconds.
inline LONG MFTimeToMsec(const LONGLONG& time)
{
return (LONG)(time / (ONE_SECOND / ONE_MSEC));
}
Requirements
| Requirement | Value |
|---|---|
| Header |
|
See also