goat3d

view src/log.h @ 37:d259a5094390

trying to figure out how to properly call C functions from the python plugin
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 06 Oct 2013 17:42:43 +0300
parents
children 498ca7ac7047
line source
1 #ifndef LOG_H_
2 #define LOG_H_
4 enum { LOG_ERROR, LOG_INFO };
6 void logmsg(int prio, const char *fmt, ...);
8 #endif // LOG_H_