mirror of
https://github.com/encounter/aurora.git
synced 2026-03-30 10:57:39 -07:00
12009bbd7b
* Remaining headers needed for TP to build * Rider's "Unversioned Files" will keep trolling me * Remove TP-specific OSReport functions
32 lines
640 B
C
32 lines
640 B
C
#ifndef _DOLPHIN_DBINTERFACE_H_
|
|
#define _DOLPHIN_DBINTERFACE_H_
|
|
|
|
#include <dolphin/os.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct DBInterface {
|
|
u32 bPresent;
|
|
u32 exceptionMask;
|
|
void (*ExceptionDestination)(void);
|
|
void* exceptionReturn;
|
|
} DBInterface;
|
|
|
|
extern DBInterface* __DBInterface;
|
|
|
|
void DBInit(void);
|
|
void DBInitComm(int* inputFlagPtr, int* mtrCallback);
|
|
void __DBExceptionDestination(void);
|
|
void __DBExceptionDestinationAux(void);
|
|
BOOL __DBIsExceptionMarked(__OSException exception);
|
|
void __DBMarkException(u8 exception, int value);
|
|
void __DBSetPresent(u32 value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|