Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
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