1
0
mirror of synced 2024-11-24 02:00:09 +01:00

Remove unused files

This commit is contained in:
Bobby Dilley 2022-11-22 10:43:53 +00:00
parent 12e6d24e5f
commit 41f071511a
5 changed files with 16 additions and 1483 deletions

View File

@ -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"
} }
} }

View File

@ -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

View File

@ -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

View File

@ -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