Files
tp/include/dolphin/db.h
T

23 lines
354 B
C
Raw Normal View History

#ifndef _DOLPHIN_DB_H_
#define _DOLPHIN_DB_H_
2021-03-28 22:49:05 +02: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
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
#endif // _DOLPHIN_DB_H_