summaryrefslogtreecommitdiff
path: root/src/win95/debuglog.h
blob: 2079406816ee6006f965e7424d48516021d3b3e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef _included_debuglog_h_
#define _included_debuglog_h_

#ifdef __cplusplus
extern "C" {
#endif

#include <stdarg.h>

typedef struct LogFile LOGFILE;

int vlfprintf(LOGFILE * lfp, char const * format, va_list args );

int lfprintf(LOGFILE * lfp, char const * format, ... );

int lfputs(LOGFILE * lfp, char const * str);

LOGFILE * lfopen(char const * fname);

void lfclose(LOGFILE * lfp);

#ifdef __cplusplus
}
#endif

#endif /* ! _included_debuglog_h_ */