comparison mcabber/mcabber/logprint.h @ 1668:41c26b7d2890

Install mcabber headers * Change mcabber headers naming scheme * Move 'src/' -> 'mcabber/' * Add missing include <mcabber/config.h>'s * Create and install clean config.h version in 'include/' * Move "dirty" config.h version to 'mcabber/' * Add $(top_srcdir) to compiler include path * Update modules HOWTO
author Myhailo Danylenko <isbear@ukrpost.net>
date Mon, 18 Jan 2010 15:36:19 +0200
parents mcabber/src/logprint.h@63dc211a4c1a
children 393c05fba337
comparison
equal deleted inserted replaced
1667:8af0e0ad20ad 1668:41c26b7d2890
1 #ifndef __MCABBER_LOGPRINT_H__
2 #define __MCABBER_LOGPRINT_H__ 1
3
4 // Flags for scr_LogPrint()
5 #define LPRINT_NORMAL 1U // Display in log window
6 #define LPRINT_LOG 2U // Log to file (if enabled)
7 #define LPRINT_DEBUG 4U // Debug message (log if enabled)
8 #define LPRINT_NOTUTF8 8U // Do not convert from UTF-8 to locale
9
10 // For convenience...
11 #define LPRINT_LOGNORM (LPRINT_NORMAL|LPRINT_LOG)
12
13 void scr_print_logwindow(const char *string);
14 void scr_LogPrint(unsigned int flag, const char *fmt, ...);
15
16 void scr_DoUpdate(void);
17
18 #endif /* __MCABBER_LOGPRINT_H__ */
19
20 /* vim: set expandtab cindent cinoptions=>2\:2(0: For Vim users... */