]> Shamusworld >> Repos - virtualjaguar/blob - src/log.h
Extensive changes to remove gcc 4.x warnings, general code cleanup
[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 log_init(const char *);
15 FILE * log_get(void);
16 void log_done(void);
17 void WriteLog(const char * text, ...);
18
19 #ifdef __cplusplus
20 }
21 #endif
22
23 #endif  // __LOG_H__