// sensorsutils.h
#define MILLISECONDS_FROM_100NANOSECONDS(durationNanoS) ((durationNanoS) / (1000 * 10))
View the official Windows Driver Kit DDI referenceNo description available.
This macro converts time in 100 nanosecond units, to milliseconds.
#define MILLISECONDS_FROM_100NANOSECONDS(durationNanoS) ((durationNanoS) / (1000 * 10))
durationNanoSThe duration in 100 nanosecond units to convert to milliseconds.
Gets a LONGLONG that represents a time length in milliseconds.