// wdftimer.h
VOID WDF_TIMER_CONFIG_INIT(
[in] PWDF_TIMER_CONFIG Config,
[in] PFN_WDF_TIMER EvtTimerFunc
);
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WDF_TIMER_CONFIG_INIT function initializes a WDF_TIMER_CONFIG structure for a timer that will use a single due time.
Config
[in]A pointer to a WDF_TIMER_CONFIG structure.
EvtTimerFunc
[in]A pointer to a driver-supplied EvtTimerFunc callback function.
The WDF_TIMER_CONFIG_INIT function zeros the specified WDF_TIMER_CONFIG structure. Then it sets the structure's Size member, stores the EvtTimerFunc pointer, sets the Period member and the TolerableDelay member to zero, and sets the AutomaticSerialization member to TRUE.
For a code example that uses WDF_TIMER_CONFIG_INIT, see WdfTimerCreate.
WDF_TIMER_CONFIG_INIT_PERIODIC