|
|
1.1 root 1: /*
2: Hatari - log.h
3:
4: This file is distributed under the GNU Public License, version 2 or at
5: your option any later version. Read the file gpl.txt for details.
6: */
7:
8: #ifndef HATARI_LOG_H
9: #define HATARI_LOG_H
10:
11: typedef enum
12: {
13: LOG_FATAL,
14: LOG_ERROR,
15: LOG_WARN,
16: LOG_INFO,
17: LOG_DEBUG
18: } LOGTYPE;
19:
20: extern void Log_Init(void);
21: extern void Log_UnInit(void);
22: extern void Log_Printf(LOGTYPE nType, const char *psFormat, ...);
23: extern void Log_AlertDlg(LOGTYPE nType, const char *psFormat, ...);
24:
25: #endif /* HATARI_LOG_H */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.