/
erlang.spawn
/
fallout2-ce
Обзор
Документация
Войти
/
erlang.spawn
/
fallout2-ce
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/debug.h
20 строк
485 B
Vlad K
Debug logging improvements (#434)
03 май 2026, 12:15
Не верифицирован
03 май 2026, 12:15
0d8741e
Код
Авторство
О чём код?
#ifndef DEBUG_H #define DEBUG_H namespace fallout { typedef int(DebugPrintProc)(const char* string); void debugModeInit(const char* debugMode); 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); } // namespace fallout #endif /* DEBUG_H */