VideoPortStopTimer - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// video.h

VIDEOPORT_DEPRECATED VIDEOPORT_API VOID VideoPortStopTimer(
  PVOID HwDeviceExtension
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-video-videoportstoptimer)

VideoPortStopTimer function

Description

The VideoPortStopTimer function disables calls to a miniport driver's HwVidTimer function.

Parameters

HwDeviceExtension

Pointer to the miniport driver's device extension. This pointer is the input parameter to the HwVidTimer function.

Return value

None

Remarks

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.

See also

DriverEntry of Video Miniport Driver

HwVidTimer

VIDEO_HW_INITIALIZATION_DATA

VideoPortStartTimer