Remove unused files
This commit is contained in:
parent
12e6d24e5f
commit
41f071511a
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -6,6 +6,7 @@
|
|||||||
"jvs.h": "c",
|
"jvs.h": "c",
|
||||||
"time.h": "c",
|
"time.h": "c",
|
||||||
"stdarg.h": "c",
|
"stdarg.h": "c",
|
||||||
"ioctl.h": "c"
|
"ioctl.h": "c",
|
||||||
|
"segaeax.h": "c"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,8 +12,6 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "segaapi.h"
|
#include "segaapi.h"
|
||||||
#include "segadef.h"
|
|
||||||
#include "segaeax.h"
|
|
||||||
#include "tsf.h"
|
#include "tsf.h"
|
||||||
|
|
||||||
//#define DEBUG_OUTPUT
|
//#define DEBUG_OUTPUT
|
||||||
|
@ -1,8 +1,20 @@
|
|||||||
#ifndef __SEGAAPI_H
|
#ifndef __SEGAAPI_H
|
||||||
#define __SEGAAPI_H
|
#define __SEGAAPI_H
|
||||||
|
|
||||||
// INCLUDES
|
#ifndef GUID_DEFINED
|
||||||
#include "segadef.h"
|
#define GUID_DEFINED
|
||||||
|
typedef struct _GUID
|
||||||
|
{
|
||||||
|
unsigned long Data1;
|
||||||
|
unsigned short Data2;
|
||||||
|
unsigned short Data3;
|
||||||
|
unsigned char Data4[8];
|
||||||
|
} GUID;
|
||||||
|
#endif // GUID_DEFINED
|
||||||
|
|
||||||
|
#ifndef DEFINE_GUID
|
||||||
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) extern const GUID name
|
||||||
|
#endif // DEFINE_GUID
|
||||||
|
|
||||||
#define SEGARESULT_FAILURE(_x) ((1 << 31) | 0xA000 | (_x))
|
#define SEGARESULT_FAILURE(_x) ((1 << 31) | 0xA000 | (_x))
|
||||||
#define SEGA_SUCCESS 0L
|
#define SEGA_SUCCESS 0L
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
#ifndef __CTDEF_H
|
|
||||||
|
|
||||||
#ifndef __SEGAAPITYPES_H
|
|
||||||
#define __SEGAAPITYPES_H
|
|
||||||
|
|
||||||
/* Define basic COM types */
|
|
||||||
#ifndef GUID_DEFINED
|
|
||||||
#define GUID_DEFINED
|
|
||||||
typedef struct _GUID
|
|
||||||
{
|
|
||||||
unsigned long Data1;
|
|
||||||
unsigned short Data2;
|
|
||||||
unsigned short Data3;
|
|
||||||
unsigned char Data4[8];
|
|
||||||
} GUID;
|
|
||||||
#endif // GUID_DEFINED
|
|
||||||
|
|
||||||
#ifndef DEFINE_GUID
|
|
||||||
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) extern const GUID name
|
|
||||||
#endif // DEFINE_GUID
|
|
||||||
|
|
||||||
#endif /* __SEGAAPITYPES_H */
|
|
||||||
|
|
||||||
#endif /* __CTDEF_H */
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user