mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
850fae1aa3
* m_Do_main / f_ap_game debug stuff * revolution sdk compatibility * f_op_actor debug work * rename fopAcM_SetupActor to fopAcM_ct * fix build * fix jp/pal splits
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
|