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