VideoPortClearEvent - NtDoc

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

VIDEOPORT_API VOID VideoPortClearEvent(
  [in] IN PVOID  HwDeviceExtension,
  [in] IN PEVENT pEvent
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

VideoPortClearEvent function

Description

The VideoPortClearEvent function sets a given event object to the nonsignaled state.

Parameters

HwDeviceExtension [in]

Pointer to the miniport driver's device extension.

pEvent [in]

Pointer to the event object.

Return value

None

Remarks

To set the state of an event object to the signaled state, use VideoPortSetEvent.

See also

VideoPortSetEvent