VideoPortDeleteEvent - NtDoc

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

VIDEOPORT_API VP_STATUS VideoPortDeleteEvent(
  [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-videoportdeleteevent)

VideoPortDeleteEvent function

Description

The VideoPortDeleteEvent function deletes the specified event object.

Parameters

HwDeviceExtension [in]

Pointer to the miniport driver's device extension.

pEvent [in]

Pointer to the event object to be deleted.

Return value

VideoPortDeleteEvent returns NO_ERROR if the event object is successfully deleted.

Remarks

This function should not be used to delete a mapped user event. To delete a mapped user event, use EngUnmapEvent.

See also

EngUnmapEvent

VideoPortCreateEvent