1
0
mirror of https://github.com/solemnwarning/directplay-lite synced 2024-12-30 16:45:37 +01:00

11 lines
177 B
C++
Raw Normal View History

#ifndef DPLITE_LOG_HPP
#define DPLITE_LOG_HPP
void log_init();
void log_fini();
bool log_trace_enabled();
void log_printf(const char *fmt, ...);
#endif /* !DPLITE_LOG_HPP */