/************************************************************************** * DSemu: Atomic message logging definitions (log.h) * * Released under the terms of the BSD Public Licence * * Imran Nazar (tf@oopsilon.com), 2004 * **************************************************************************/ #ifndef __LOG_H_ #define __LOG_H_ #include "vtbl.h" LOGVTBL *getVt(); void LogInit(); // Init placeholder void LogShutdown(); // Quit placeholder void LogAppend(char *str); // Append a message to the log LOGVTBL vtbl={LogInit, LogShutdown, LogAppend}; #endif//__LOG_H_ /*** EOF:log.h ***********************************************************/