Files
ac-decomp/include/dolphin/db.h
T
2025-06-18 07:08:11 -04:00

20 lines
261 B
C

#ifndef DB_H
#define DB_H
#include "types.h"
#include <dolphin/db/DBInterface.h>
#ifdef __cplusplus
extern "C"{
#endif
#define OS_DBINTERFACE_ADDR 0x00000040
BOOL DBIsDebuggerPresent(void);
void DBPrintf(char* str, ...);
#ifdef __cplusplus
}
#endif
#endif