comparison mcabber/src/logprint.h @ 952:527d6f234924

Small code cleanup
author Mikael Berthe <mikael@lilotux.net>
date Sat, 26 Aug 2006 21:13:13 +0200
parents ce4f8a2129a4
children c33b5b6fbf08
comparison
equal deleted inserted replaced
951:f243293e70ad 952:527d6f234924
1 #ifndef __LOGPRINT_H__ 1 #ifndef __LOGPRINT_H__
2 #define __LOGPRINT_H__ 1 2 #define __LOGPRINT_H__ 1
3 3
4 // Flags for scr_LogPrint() 4 // Flags for scr_LogPrint()
5 #define LPRINT_NORMAL 1 // Display in log window 5 #define LPRINT_NORMAL 1U // Display in log window
6 #define LPRINT_LOG 2 // Log to file (if enabled) 6 #define LPRINT_LOG 2U // Log to file (if enabled)
7 #define LPRINT_DEBUG 4 // Debug message (log if enabled) 7 #define LPRINT_DEBUG 4U // Debug message (log if enabled)
8 #define LPRINT_NOTUTF8 8 // Do not convert from UTF-8 to locale 8 #define LPRINT_NOTUTF8 8U // Do not convert from UTF-8 to locale
9 9
10 // For convenience... 10 // For convenience...
11 #define LPRINT_LOGNORM (LPRINT_NORMAL|LPRINT_LOG) 11 #define LPRINT_LOGNORM (LPRINT_NORMAL|LPRINT_LOG)
12 12
13 void scr_LogPrint(unsigned int flag, const char *fmt, ...); 13 void scr_LogPrint(unsigned int flag, const char *fmt, ...);