// ndis.h
VOID NdisFreeTimerObject(
[in] NDIS_HANDLE TimerObject
);
View the official Windows Driver Kit DDI referenceNo description available.
The NdisFreeTimerObject function frees a timer object that was allocated with the NdisAllocateTimerObject function.
TimerObject [in]A handle to a timer object that NDIS provides when a driver calls the NdisAllocateTimerObject function.
To use timer services, an NDIS driver first calls the NdisAllocateTimerObject function to initialize a timer object. Typically, NdisAllocateTimerObject is called when a driver initializes. The driver must call NdisFreeTimerObject to free the timer object when the timer is no longer required.
To cancel a timer, call the NdisCancelTimerObject function. NdisCancelTimerObject dequeues the timer object if it is currently queued.