Use #define PRINTF. Remove an extra #include.

This commit is contained in:
Glenn Maynard
2003-09-19 00:51:04 +00:00
parent 47c0b33520
commit 8227fae6b9
+4 -6
View File
@@ -12,23 +12,21 @@
-----------------------------------------------------------------------------
*/
#include <stdio.h>
class RageLog
{
public:
RageLog();
~RageLog();
void Trace( const char *fmt, ...);
void Warn( const char *fmt, ...);
void Info( const char *fmt, ...);
void Trace( const char *fmt, ...) PRINTF(2,3);
void Warn( const char *fmt, ...) PRINTF(2,3);
void Info( const char *fmt, ...) PRINTF(2,3);
void Flush();
void ShowConsole();
void HideConsole();
void MapLog(const CString &key, const char *fmt, ...);
void MapLog(const CString &key, const char *fmt, ...) PRINTF(3,4);
void UnmapLog(const CString &key);
static const char *GetAdditionalLog();