// rxtimer.h
NTSTATUS RxPostOneShotTimerRequest(
[in] IN PRDBSS_DEVICE_OBJECT pDeviceObject,
[in] IN PRX_WORK_ITEM pWorkItem,
[in] IN PRX_WORKERTHREAD_ROUTINE Routine,
[in] IN PVOID pContext,
[in] IN LARGE_INTEGER TimeInterval
);
View the official Windows Driver Kit DDI referenceNo description available.
RxPostOneShotTimerRequest initializes a one-shot timer entry. The passed-in pointer to a worker thread routine is called once when the timer expires.
pDeviceObject [in]A pointer to the device object to be associated with this timer.
pWorkItem [in]A pointer to the worker item.
Routine [in]A pointer to the worker thread routine to call when this timer expires.
pContext [in]A pointer to the context parameter associated with this timer.
TimeInterval [in]The time interval, in 100-nanosecond ticks.
RxPostOneShotTimerRequest returns STATUS_SUCCESS on success.
If a NULL pointer is passed as the pWorkItem parameter, this routine causes the system to ASSERT on checked builds.