// ks.h
KSDDKAPI VOID KsFreeDefaultClock(
[in] PKSDEFAULTCLOCK DefaultClock
);
View the official Windows Driver Kit DDI referenceNo description available.
The KsFreeDefaultClock function frees a default clock structure previously allocated with KsAllocateDefaultClock, taking into account any currently running timer DPCs. This assumes that all instances of the clock have been closed. This may actually just decrement the internal reference counter and allow a pending DPC to free the structure asynchronously.
This may only be called at PASSIVE_LEVEL.
DefaultClock [in]Specifies the previously allocated structure to free.
None