// vmbuskernelmodeclientlibapi.h
EVT_VMB_CHANNEL_PNP_FAILURE EvtVmbChannelPnpFailure;
VOID EvtVmbChannelPnpFailure(
[in] VMBCHANNEL Channel,
[in] NTSTATUS FailureStatus
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
[Some information relates to pre-released product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.]
The EvtChannelPnpFailure callback function is invoked if the client endpoint in the guest virtual machine asynchronously fails to connect even though a PnP device was located.
Channel [in]The channel of the client endpoint.
FailureStatus [in]A failure code.
The VmbClientChannelInitSetTargetPnp function registers EvtChannelPnpFailure code to run in the event of this kind of failure.
VmbClientChannelInitSetTargetPnp