]> Shamusworld >> Repos - stargem2/blob - src/log.h
0663051418962a223b9faa6b79bf383fb9dd64f0
[stargem2] / src / log.h
1 //
2 // LOG.H
3 //
4
5 #ifndef __LOG_H__
6 #define __LOG_H__
7
8 #include <stdarg.h>
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 bool InitLog(const char *);
15 void LogDone(void);
16 void WriteLog(const char * text, ...);
17
18 #ifdef __cplusplus
19 }
20 #endif
21
22 #endif  // __LOG_H__