fallout2-ce/src/debug.h

20 lines
436 B
C
Raw Normal View History

2022-05-19 01:51:26 -07:00
#ifndef DEBUG_H
#define DEBUG_H
2022-09-23 05:43:44 -07:00
namespace fallout {
2022-05-19 01:51:26 -07:00
typedef int(DebugPrintProc)(char* string);
void _GNW_debug_init();
void _debug_register_mono();
void _debug_register_log(const char* fileName, const char* mode);
void _debug_register_screen();
void _debug_register_env();
void _debug_register_func(DebugPrintProc* proc);
int debugPrint(const char* format, ...);
void _debug_exit(void);
2022-09-23 05:43:44 -07:00
} // namespace fallout
2022-05-19 01:51:26 -07:00
#endif /* DEBUG_H */