]> Shamusworld >> Repos - legend/blob - src/log.h
Initial commit for the Legend of A... project!
[legend] / src / log.h
1 //
2 // LOG.H
3 //
4
5 #ifndef __LOG_H__
6 #define __LOG_H__
7
8 // Make this header work with either C or C++
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__