/* * logging.h * * Created on: Oct 3, 2016 * Author: nullifiedcat */ #ifndef LOGGING_HPP_ #define LOGGING_HPP_ #include typedef void(fn_Msg_t)(const char *msg, va_list); #ifdef __cplusplus namespace logging { #endif extern FILE *handle; void Initialize(); void Shutdown(); void Info(const char *fmt, ...); #ifdef __cplusplus } #endif #endif /* LOGGING_HPP_ */