view mcabber/src/logprint.h @ 699:ee03b56b93ee

Update Copyright (2006)
author Mikael Berthe <mikael@lilotux.net>
date Sun, 12 Feb 2006 11:39:32 +0100
parents fed6d1e4d7a9
children ce4f8a2129a4
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__ */

/* vim: set expandtab cindent cinoptions=>2\:2(0:  For Vim users... */