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