view mcabber/src/logprint.h @ 403:17aa60c6dc63

Allow a different server name than the jid domain name Sync libjabber with upstream (centericq). The libjabber patch is from Ian Johannesen. This allows connecting to Google Talk, for example.
author Mikael Berthe <mikael@lilotux.net>
date Sat, 27 Aug 2005 11:21:27 +0200
parents bd5638c21834
children 8b3db0b555a1
line wrap: on
line source

#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__ */