mcabber/src/logprint.h
author Mikael Berthe <mikael@lilotux.net>
Sun, 30 Oct 2005 12:09:32 +0200
changeset 502 3134b4960cdb
parent 374 bd5638c21834
child 576 8b3db0b555a1
permissions -rw-r--r--
Fix mixed declaration and code

#ifndef __LOGPRINT_H__
#define __LOGPRINT_H__ 1

// Flags for scr_LogPrint()
#define LPRINT_NORMAL   1   // Display in log window
#define LPRINT_LOG      2   // Log to file (if enabled)
#define LPRINT_DEBUG    4   // Debug message (log if enabled)

// For convenience...
#define LPRINT_LOGNORM  (LPRINT_NORMAL|LPRINT_LOG)

void scr_LogPrint(unsigned int flag, const char *fmt, ...);

#endif /* __LOGPRINT_H__ */