mirror of
https://github.com/zeldaret/tp
synced 2026-05-25 15:25:25 -04:00
a30e617e5a
* Global: Define DEBUG as 0 if not already defined * Clean up DEBUG-guarded code
17 lines
247 B
C
17 lines
247 B
C
|
|
#ifndef F_PC_DEBUG_SV_H_
|
|
#define F_PC_DEBUG_SV_H_
|
|
|
|
#include <dolphin.h>
|
|
|
|
#if DEBUG
|
|
|
|
char* fpcDbSv_getNameString(s16 i_name);
|
|
|
|
typedef void (*fpcDbSv_callback)(void* i_process);
|
|
extern const fpcDbSv_callback g_fpcDbSv_service[50];
|
|
|
|
#endif
|
|
|
|
#endif
|