Compartir a través de


Adquirir características de USBCAMD2

Debe adquirir un puntero a la estructura USBCAMD_INTERFACE antes de poder usar las nuevas características usbCAMD2. Para adquirir el puntero, compile y envíe una solicitud de IRP_MN_QUERY_INTERFACE desde el controlador de SRB_INITIALIZATION_COMPLETE del minidriver de la cámara en la función de devolución de llamada AdapterReceivePacket . La biblioteca de minidriver USBCAMD2 procesa este IRP y devuelve una interfaz de llamada directa de tipo USBCAMD_INTERFACE al minidriver de cámara. La interfaz es básicamente una tabla de punteros de función.

En el código siguiente se muestra cómo compilar y enviar la solicitud de IRP_MN_QUERY_INTERFACE desde el minidriver de cámara:

KeInitializeEvent(&Event, NotificationEvent, FALSE);
Irp = IoBuildSynchronousFsdRequest(
    IRP_MJ_PNP,
    pDeviceObject,
    NULL,
    0,
    NULL,
    &Event,
    &IoStatusBlock);

if (NULL != Irp)
{
    Irp->RequestorMode = KernelMode;
    IrpStackNext = IoGetNextIrpStackLocation(Irp);
    //
    // Create an interface query out of the Irp.
    //
    IrpStackNext->MinorFunction = IRP_MN_QUERY_INTERFACE;
    IrpStackNext->Parameters.QueryInterface.InterfaceType = (GUID*)&GUID_USBCAMD_INTERFACE;
    IrpStackNext->Parameters.QueryInterface.Size = sizeof(*pUsbcamdInterface);
    IrpStackNext->Parameters.QueryInterface.Version = USBCAMD_VERSION_200;
    IrpStackNext->Parameters.QueryInterface.Interface = (PINTERFACE)pUsbcamdInterface;
    IrpStackNext->Parameters.QueryInterface.InterfaceSpecificData = NULL;
    Status = IoCallDriver(pDeviceObject, Irp);
    if (STATUS_PENDING == Status)
    {
        //
        // This  waits using KernelMode so that the stack, and therefore the
        // event on that stack, is not paged out.
        //
        KeWaitForSingleObject(&Event, Executive, KernelMode, FALSE, NULL);
        Status = IoStatusBlock.Status;
    }

}
else
{
    Status = STATUS_INSUFFICIENT_RESOURCES;
}