Moved mode decoders to separate files in DiscImageChef.Device.Report.

This commit is contained in:
2017-12-17 15:58:06 +00:00
parent 78df96004f
commit 688eb384d0
4 changed files with 295 additions and 292 deletions

View File

@@ -35,8 +35,8 @@ typedef struct
int decoded;
} DecodedMode;
ModeHeader DecodeModeHeader6(unsigned char* modeResponse, uint8_t deviceType);
ModeHeader DecodeModeHeader10(unsigned char* modeResponse, uint8_t deviceType);
DecodedMode DecodeMode6(unsigned char* modeResponse, uint8_t deviceType);
DecodedMode DecodeMode10(unsigned char* modeResponse, uint8_t deviceType);
ModeHeader *DecodeModeHeader6(unsigned char* modeResponse, uint8_t deviceType);
ModeHeader *DecodeModeHeader10(unsigned char* modeResponse, uint8_t deviceType);
DecodedMode *DecodeMode6(unsigned char* modeResponse, uint8_t deviceType);
DecodedMode *DecodeMode10(unsigned char* modeResponse, uint8_t deviceType);
#endif //DISCIMAGECHEF_DEVICE_REPORT_SCSI_MODE_H