// minitape.h
TAPE_VERIFY_INQUIRY_ROUTINE TapeVerifyInquiryRoutine;
BOOLEAN TapeVerifyInquiryRoutine(
[in] PINQUIRYDATA InquiryData,
[in] PMODE_CAPABILITIES_PAGE ModeCapabilitiesPage
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
TAPE_VERIFY_INQUIRY_ROUTINE determines whether the tape miniclass driver recognizes and supports a given device. This routine is required.
InquiryData [in]Pointer to SCSI inquiry data for the device.
ModeCapabilitiesPage [in]Pointer to a MODE_CAPABILITIES_PAGE structure that contains low-level information about the device. The format of this structure is defined by the QIC 157 standard and is subject to change. The pointer is NULL if the tape device does not support a mode capabilities page.
TAPE_VERIFY_INQUIRY_ROUTINE returns TRUE if the miniclass driver supports the device.
TAPE_VERIFY_INQUIRY_ROUTINE examines the InquiryData, particularly the VendorId and ProductId members, to determine whether the tape miniclass driver supports the tape device. TAPE_VERIFY_INQUIRY_ROUTINE uses TapeClassCompareMemory to compare ID strings against values the tape miniclass driver supports.