From 2186d5f3f95cd74a070a490d899291648d58667a Mon Sep 17 00:00:00 2001 From: Steven Fuller Date: Sun, 1 Jul 2001 00:55:22 +0000 Subject: Initial revision --- src/win95/debuglog.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/win95/debuglog.h (limited to 'src/win95/debuglog.h') diff --git a/src/win95/debuglog.h b/src/win95/debuglog.h new file mode 100644 index 0000000..2079406 --- /dev/null +++ b/src/win95/debuglog.h @@ -0,0 +1,26 @@ +#ifndef _included_debuglog_h_ +#define _included_debuglog_h_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +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_ */ -- cgit v1.3