MuckyFoot-UrbanChaos/thrust/log.h
2017-05-20 11:14:17 +10:00

22 lines
281 B
C

//
// For displaying debug messages.
//
#ifndef _LOG_
#define _LOG_
void LOG_init (void);
void LOG_message(ULONG colour, CBYTE *fmt, ...);
void LOG_draw (void);
void LOG_fini (void);
//
// Sends the message to c:\debuglog.txt
//
void LOG_file(CBYTE *fmt, ...);
#endif