mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-23 14:41:33 -04:00
7ef1810132
* 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
32 lines
649 B
C
32 lines
649 B
C
#ifndef _REVOLUTION_DBINTERFACE_H_
|
|
#define _REVOLUTION_DBINTERFACE_H_
|
|
|
|
#include <revolution/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
|