MILLISECONDS_TO_100NANOSECONDS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// sensorsutils.h

#define MILLISECONDS_TO_100NANOSECONDS(durationMs) ((durationMs) * 1000 * 10)
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-sensorsutils-milliseconds_to_100nanoseconds)

MILLISECONDS_TO_100NANOSECONDS macro

Description

This macro converts time, in milliseconds, to 100 nanosecond units.

Syntax

#define MILLISECONDS_TO_100NANOSECONDS(durationMs) ((durationMs) * 1000 * 10)

Parameters

durationMs

The duration in milliseconds to convert to 100 nanosecond units.

Remarks

Gets a ULONGLONG that represents a time length in nanoseconds.

See also