robmcmullen-apple2/src/log.h

23 lines
277 B
C
Raw Normal View History

2007-05-29 03:06:33 +00:00
//
// LOG.H
//
#ifndef __LOG_H__
#define __LOG_H__
// Make this header work with either C or C++
#ifdef __cplusplus
extern "C" {
#endif
2008-05-07 06:14:40 +00:00
bool InitLog(const char *);
2007-05-29 03:06:33 +00:00
void LogDone(void);
void WriteLog(const char * text, ...);
#ifdef __cplusplus
}
#endif
#endif // __LOG_H__