// video.h
VIDEOPORT_API VP_STATUS VideoPortDeleteEvent(
[in] IN PVOID HwDeviceExtension,
[in] IN PEVENT pEvent
);
View the official Windows Driver Kit DDI referenceNo description available.
The VideoPortDeleteEvent function deletes the specified event object.
HwDeviceExtension [in]Pointer to the miniport driver's device extension.
pEvent [in]Pointer to the event object to be deleted.
VideoPortDeleteEvent returns NO_ERROR if the event object is successfully deleted.
This function should not be used to delete a mapped user event. To delete a mapped user event, use EngUnmapEvent.