Added SILC Thread Queue API
[runtime.git] / apps / irssi / src / common.h
index bdfec4ec1fdaea942e0445984b66b3c298a3ca32..f3cc8e60962f05b0d0e9b27b910b81e2206466fa 100644 (file)
@@ -1,8 +1,9 @@
 #ifndef __COMMON_H
 #define __COMMON_H
 
-#define IRSSI_AUTHOR "Timo Sirainen <cras@irssi.org>"
 #define IRSSI_WEBSITE "http://irssi.org/"
+#define IRSSI_AUTHOR_EMAIL "cras@irssi.org"
+#define IRSSI_AUTHOR "Timo Sirainen <"IRSSI_AUTHOR_EMAIL">"
 
 #define IRSSI_DIR_SHORT "~/.silc"
 #define IRSSI_DIR_FULL "%s/.silc" /* %s == g_get_home_dir() */
 #define IRSSI_GLOBAL_CONFIG "silc.conf" /* config file name in /etc/ */
 #define IRSSI_HOME_CONFIG "silc.conf" /* config file name in ~/.irssi/ */
 
+#define DEFAULT_SERVER_ADD_PORT 706
+
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
 
+#ifndef PACKAGE
+#define PACKAGE "SILC Client"
+#endif /* PACKAGE */
+
 #include <stdio.h>
 #include <stddef.h>
 #include <stdarg.h>
 #  include <gmodule.h>
 #endif
 
+#ifdef USE_GC
+#  define g_free(x) G_STMT_START { (x) = NULL; } G_STMT_END
+#endif
+
+#if defined (UOFF_T_INT)
+typedef unsigned int uoff_t;
+#elif defined (UOFF_T_LONG)
+typedef unsigned long uoff_t;
+#elif defined (UOFF_T_LONG_LONG)
+typedef unsigned long long uoff_t;
+#else
+#  error uoff_t size not set
+#endif
+
 /* input functions */
 #define G_INPUT_READ   (1 << 0)
 #define G_INPUT_WRITE  (1 << 1)
@@ -100,6 +121,7 @@ typedef struct _LINEBUF_REC LINEBUF_REC;
 typedef struct _NET_SENDBUF_REC NET_SENDBUF_REC;
 typedef struct _RAWLOG_REC RAWLOG_REC;
 
+typedef struct _CHAT_PROTOCOL_REC CHAT_PROTOCOL_REC;
 typedef struct _CHATNET_REC CHATNET_REC;
 typedef struct _SERVER_REC SERVER_REC;
 typedef struct _WI_ITEM_REC WI_ITEM_REC;