WDF_ABS_TIMEOUT_IN_US function (wdfcore.h)

[Applies to KMDF and UMDF]

The WDF_ABS_TIMEOUT_IN_US function converts a specified number of microseconds to an absolute time value.

Syntax

LONGLONG WDF_ABS_TIMEOUT_IN_US(
  [in] ULONGLONG Time
);

Parameters

[in] Time

The number of microseconds to convert.

Return value

WDF_ABS_TIMEOUT_IN_US returns the absolute time value, in system time units (100-nanosecond intervals), that represents the number of microseconds that Time specifies.

Remarks

An absolute time value is a time value that specifies a specific date and time. Absolute times are relative to 00:00, January 1, 1601. If an absolute time value is passed to the system, the system adds the absolute time value to the time value that represents 00:00, January 1, 1601.

Requirements

Requirement Value
Target Platform Universal
Minimum KMDF version 1.0
Minimum UMDF version 2.0
Header wdfcore.h (include Wdf.h)
Library None
IRQL Any level

See also

WDF_REL_TIMEOUT_IN_US