1 /* $Id: util_ui.h 2558 2008-03-30 21:44:31Z kuhlmann $ */ 2 3 #ifndef CLIMM_UTIL_UI_H 4 #define CLIMM_UTIL_UI_H 5 6 void UtilUIDisplayMeta (Contact *cont); 7 BOOL DebugReal (UDWORD level, const char *str, ...) __attribute__ ((format (__printf__, 2, 3))); 8 9 #define DEB_PROTOCOL 0x00000008L 10 #define DEB_PACKET 0x00000010L 11 #define DEB_QUEUE 0x00000020L 12 #define DEB_CONNECT 0x00000040L 13 #define DEB_EVENT 0x00000080L 14 #define DEB_EXTRA 0x00000100L 15 #define DEB_CONTACT 0x00000200L 16 #define DEB_OPTS 0x00000400L 17 #define DEB_PACK5DATA 0x00000800L 18 #define DEB_PACK8 0x00001000L 19 #define DEB_PACK8DATA 0x00002000L 20 #define DEB_PACK8DATAONLINE 0x00008000L 21 #define DEB_MSG 0x00004000L 22 #define DEB_PACKTCP 0x00010000L 23 #define DEB_PACKTCPDATA 0x00020000L 24 #define DEB_TCP 0x00200000L 25 #define DEB_IO 0x00400000L 26 #define DEB_SSL 0x00800000L 27 #define DEB_XMPPIN 0x01000000L 28 #define DEB_XMPPOUT 0x02000000L 29 #define DEB_XMPPOTHER 0x04000000L 30 31 #define AVPFMT "%s%-15s%s %s\n" 32 33 #endif /* CLIMM_UTIL_UI_H */ 34