mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Added helper application to create device reports on Linux systems without .NET framework available.
This commit is contained in:
21
DiscImageChef.Device.Report/main.h
Normal file
21
DiscImageChef.Device.Report/main.h
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// Created by claunia on 11/12/17.
|
||||
//
|
||||
|
||||
#ifndef DISCIMAGECHEF_DEVICE_REPORT_MAIN_H
|
||||
#define DISCIMAGECHEF_DEVICE_REPORT_MAIN_H
|
||||
typedef enum
|
||||
{
|
||||
DEVICE_TYPE_UNKNOWN,
|
||||
DEVICE_TYPE_SCSI,
|
||||
DEVICE_TYPE_ATA,
|
||||
DEVICE_TYPE_ATAPI,
|
||||
DEVICE_TYPE_USB,
|
||||
DEVICE_TYPE_FIREWIRE,
|
||||
DEVICE_TYPE_PCMCIA,
|
||||
DEVICE_TYPE_MMC,
|
||||
DEVICE_TYPE_SD
|
||||
} DeviceTypes;
|
||||
|
||||
const char* DeviceType[] = { "Unknown", "SCSI", "ATA", "ATAPI", "USB", "FireWire", "PCMCIA", "MultiMediaCard", "SecureDigital" };
|
||||
#endif //DISCIMAGECHEF_DEVICE_REPORT_MAIN_H
|
||||
Reference in New Issue
Block a user