mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Added MMC report to DiscImageChef.Device.Report.
This commit is contained in:
23
DiscImageChef.Device.Report/mmc_report.h
Normal file
23
DiscImageChef.Device.Report/mmc_report.h
Normal file
@@ -0,0 +1,23 @@
|
||||
//
|
||||
// Created by claunia on 17/12/17.
|
||||
//
|
||||
|
||||
#ifndef DISCIMAGECHEF_DEVICE_REPORT_MMC_REPORT_H
|
||||
#define DISCIMAGECHEF_DEVICE_REPORT_MMC_REPORT_H
|
||||
|
||||
void MmcReport(int fd, xmlTextWriterPtr xmlWriter, unsigned char* cdromMode);
|
||||
|
||||
typedef struct
|
||||
{
|
||||
int present;
|
||||
size_t len;
|
||||
unsigned char* data;
|
||||
} FeatureDescriptors;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint32_t DataLength;
|
||||
uint16_t CurrentProfile;
|
||||
FeatureDescriptors Descriptors[65536];
|
||||
} SeparatedFeatures;
|
||||
#endif //DISCIMAGECHEF_DEVICE_REPORT_MMC_REPORT_H
|
||||
Reference in New Issue
Block a user