goat3dgfx

view src/logger.h @ 11:d061fe1a31ec

compile vr source files or not
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 24 Nov 2013 14:00:14 +0200
parents 1873dfd13f2d
children 7d6b667821cf
line source
1 #ifndef LOGGER_H_
2 #define LOGGER_H_
4 void info_log(const char *fmt, ...);
5 void warning_log(const char *fmt, ...);
6 void error_log(const char *fmt, ...);
7 void fatal_log(const char *fmt, ...);
8 void debug_log(const char *fmt, ...);
10 #endif // LOGGER_H_