mirror of https://github.com/zeldaret/tp.git
36 lines
718 B
C
36 lines
718 B
C
#ifndef _DOLPHIN_DBINTERFACE_H_
|
|
#define _DOLPHIN_DBINTERFACE_H_
|
|
|
|
#ifdef __REVOLUTION_SDK__
|
|
#include <revolution/db/DBInterface.h>
|
|
#else
|
|
#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
|
|
#endif
|