mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Refactor: Move defines to header file.
This commit is contained in:
@@ -6,19 +6,14 @@
|
|||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <libxml/xmlwriter.h>
|
#include <libxml/xmlwriter.h>
|
||||||
|
#include "main.h"
|
||||||
#include "scsi.h"
|
#include "scsi.h"
|
||||||
#include "ata.h"
|
#include "ata.h"
|
||||||
#include "main.h"
|
|
||||||
#include "atapi.h"
|
#include "atapi.h"
|
||||||
#include "atapi_report.h"
|
#include "atapi_report.h"
|
||||||
#include "scsi_report.h"
|
#include "scsi_report.h"
|
||||||
#include "ata_report.h"
|
#include "ata_report.h"
|
||||||
|
|
||||||
#define DIC_VERSION "3.99.6.0"
|
|
||||||
#define DIC_COPYRIGHT "Copyright © 2011-2017 Natalia Portillo"
|
|
||||||
#define XML_ENCODING "UTF-8"
|
|
||||||
#define DIC_REPORT_ROOT "DicDeviceReport"
|
|
||||||
|
|
||||||
int main(int argc, void *argv[])
|
int main(int argc, void *argv[])
|
||||||
{
|
{
|
||||||
int fd, rc;
|
int fd, rc;
|
||||||
|
|||||||
@@ -4,6 +4,12 @@
|
|||||||
|
|
||||||
#ifndef DISCIMAGECHEF_DEVICE_REPORT_MAIN_H
|
#ifndef DISCIMAGECHEF_DEVICE_REPORT_MAIN_H
|
||||||
#define DISCIMAGECHEF_DEVICE_REPORT_MAIN_H
|
#define DISCIMAGECHEF_DEVICE_REPORT_MAIN_H
|
||||||
|
|
||||||
|
#define DIC_VERSION "3.99.6.0"
|
||||||
|
#define DIC_COPYRIGHT "Copyright © 2011-2017 Natalia Portillo"
|
||||||
|
#define XML_ENCODING "UTF-8"
|
||||||
|
#define DIC_REPORT_ROOT "DicDeviceReport"
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
DEVICE_TYPE_UNKNOWN,
|
DEVICE_TYPE_UNKNOWN,
|
||||||
|
|||||||
Reference in New Issue
Block a user