]> Shamusworld >> Repos - virtualjaguar/blob - src/include/log.h
Changes for the upcoming 1.0.5 release
[virtualjaguar] / src / include / log.h
1 //
2 // LOG.H
3 //
4
5 #ifndef __LOG_H__
6 #define __LOG_H__
7
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <stdarg.h>
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 int log_init(char *);
17 FILE * log_get(void);
18 void log_done(void);
19 void WriteLog(const char * text, ...);
20
21 #ifdef __cplusplus
22 }
23 #endif
24
25 #endif  // __LOG_H__