Added detection for the unsigned/signed short type
[clinton/Virtual-Jaguar-Rx.git] / src / log.h
CommitLineData
cf76e892
JPM
1//
2// log.h: Logfile support
3//
4
5#ifndef __LOG_H__
6#define __LOG_H__
7
8#include <stdio.h>
9
be44e757 10#if 0
cf76e892
JPM
11#ifdef __cplusplus
12extern "C" {
13#endif
be44e757 14#endif
cf76e892 15
be44e757
JPM
16extern int LogInit(const char *);
17extern FILE * LogGet(void);
18extern void LogDone(void);
19extern void WriteLog(const char * text, ...);
cf76e892 20
be44e757 21#if 0
cf76e892
JPM
22#ifdef __cplusplus
23}
24#endif
be44e757 25#endif
cf76e892 26
be44e757 27// Some useful defines... :-) but not used
cf76e892
JPM
28//#define GPU_DEBUG
29//#define LOG_BLITS
30
31#endif // __LOG_H__