goat3d
annotate src/log.h @ 25:d0260d80ae09
adding the nodes interface, and continuing the max plugin
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 28 Sep 2013 19:12:50 +0300 |
parents | |
children | 498ca7ac7047 |
rev | line source |
---|---|
nuclear@16 | 1 #ifndef LOG_H_ |
nuclear@16 | 2 #define LOG_H_ |
nuclear@16 | 3 |
nuclear@16 | 4 enum { LOG_ERROR, LOG_INFO }; |
nuclear@16 | 5 |
nuclear@16 | 6 void logmsg(int prio, const char *fmt, ...); |
nuclear@16 | 7 |
nuclear@16 | 8 #endif // LOG_H_ |