// video.h
VIDEOPORT_DEPRECATED VIDEOPORT_API VOID VideoPortStartTimer(
PVOID HwDeviceExtension
);
View the official Windows Driver Kit DDI referenceNo description available.
The VideoPortStartTimer function enables calls to a miniport driver's HwVidTimer function.
HwDeviceExtensionPointer to the miniport driver's device extension. This pointer is the input parameter to the HwVidTimer function.
None
After a miniport driver calls VideoPortStartTimer, its HwVidTimer function is called at approximately one-second intervals until the miniport driver calls VideoPortStopTimer. A miniport driver's HwVidTimer function must not call VideoPortStopTimer.
A miniport driver cannot call VideoPortStartTimer or VideoPortStopTimer if its DriverEntry function set the HwTimer member of the VIDEO_HW_INITIALIZATION_DATA structure to NULL.
DriverEntry of Video Miniport Driver