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
23 lines
354 B
C
23 lines
354 B
C
#ifndef _DOLPHIN_DB_H_
|
|
#define _DOLPHIN_DB_H_
|
|
|
|
#include <dolphin/types.h>
|
|
#include <dolphin/db/DBInterface.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define OS_DBINTERFACE_ADDR 0x00000040
|
|
|
|
BOOL DBIsDebuggerPresent(void);
|
|
void DBPrintf(char* str, ...);
|
|
s32 DBQueryData(void);
|
|
u32 DBRead(u8*, u32);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _DOLPHIN_DB_H_
|