TapeMiniVerifyInquiry

BOOLEAN
    TapeMiniVerifyInquiry(

        IN PINQUIRYDATA  InquiryData,
        IN PMODE_CAPABILITIES_PAGE  ModeCapabilitiesPage        /* optional */
        );

TapeMiniVerifyInquiry determines whether the tape miniclass driver recognizes and supports a given device. This routine is required.

Parameters

InquiryData
Points to a structure that contains information about the device.
ModeCapabilitiesPage
Points to a structure that contains low-level information about the device. The format of this structure is defined by the evolving QIC 157 standard and is subject to change. The pointer is NULL if the tape device does not support a mode capabilities page.

Return Value

TapeMiniVerifyInquiry returns TRUE if the miniclass driver supports the device.

Comments

TapeMiniVerifyInquiry examines the InquiryData, particularly the VendorId and ProductId members, to determine whether the tape miniclass driver supports the tape device. TapeMiniVerifyInquiry uses TapeClassCompareMemory to compare ID strings against values the tape miniclass driver supports.

See Also

TapeClassCompareMemory