/* * logging.h * * Created on: Oct 3, 2016 * Author: nullifiedcat */ #pragma once #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