Added SCSI INQUIRY report to DiscImageChef.Device.Report.

This commit is contained in:
2017-12-15 01:15:11 +00:00
parent 10054f1de2
commit 8930336221
9 changed files with 496 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
//
// Created by claunia on 15/12/17.
//
#ifndef DISCIMAGECHEF_DEVICE_REPORT_INQUIRY_DECODE_H
#define DISCIMAGECHEF_DEVICE_REPORT_INQUIRY_DECODE_H
#include <stdint.h>
char *DecodeTPGSValues(uint8_t capabilities);
char *DecodePeripheralDeviceType(uint8_t capabilities);
char *DecodePeripheralQualifier(uint8_t capabilities);
char *DecodeSPIClocking(uint8_t capabilities);
#endif //DISCIMAGECHEF_DEVICE_REPORT_INQUIRY_DECODE_H