prime/include/dolphin/db.h

32 lines
501 B
C
Raw Normal View History

#ifndef _DOLPHIN_DB
#define _DOLPHIN_DB
2022-03-23 21:22:48 +00:00
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
2022-03-23 21:22:48 +00:00
#define ExceptionHookDestination 0x80000048
#define IsDebuggerPresent 0x80000040
2022-03-23 21:22:48 +00:00
// static int __DBInterface;
struct DBInterface {
u8 filler0[4];
u32 unk4;
2022-03-23 21:22:48 +00:00
};
static struct DBInterface* __DBInterface;
static int DBVerbose;
void DBInit(void);
void DBInitComm(int* inputFlagPtr, int* mtrCallback);
static void __DBExceptionDestination(void);
#ifdef __cplusplus
}
#endif
#endif // _DOLPHIN_DB