2025-02-10 11:20:42 -08:00
|
|
|
#ifndef _DOLPHIN_DB_H_
|
|
|
|
|
#define _DOLPHIN_DB_H_
|
2021-03-28 22:49:05 +02:00
|
|
|
|
2025-02-10 11:20:42 -08:00
|
|
|
#include <dolphin/types.h>
|
|
|
|
|
#include <dolphin/db/DBInterface.h>
|
2021-03-28 22:49:05 +02:00
|
|
|
|
2023-01-02 11:20:10 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define OS_DBINTERFACE_ADDR 0x00000040
|
|
|
|
|
|
2025-02-10 11:20:42 -08:00
|
|
|
BOOL DBIsDebuggerPresent(void);
|
|
|
|
|
void DBPrintf(char* str, ...);
|
|
|
|
|
s32 DBQueryData(void);
|
|
|
|
|
u32 DBRead(u8*, u32);
|
2023-01-02 11:20:10 -08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-02-10 11:20:42 -08:00
|
|
|
#endif // _DOLPHIN_DB_H_
|