1999-09-03 10:27:29 -04:00
|
|
|
#ifndef __COMMON_H
|
|
|
|
#define __COMMON_H
|
|
|
|
|
2000-02-25 12:03:17 -05:00
|
|
|
#define IRSSI_AUTHOR "Timo Sirainen <tss@iki.fi>"
|
2001-03-29 09:38:29 -05:00
|
|
|
#define IRSSI_WEBSITE "http://irssi.org/"
|
1999-09-03 10:27:29 -04:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2001-02-23 00:02:33 -05:00
|
|
|
#include "config.h"
|
1999-09-03 10:27:29 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2000-08-30 18:29:55 -04:00
|
|
|
#include <stddef.h>
|
1999-09-03 10:27:29 -04:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
# ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
# include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
#include <errno.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2000-10-26 14:12:20 -04:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
1999-09-03 10:27:29 -04:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_DIRENT_H
|
|
|
|
# include <dirent.h>
|
|
|
|
#endif
|
|
|
|
#include <fcntl.h>
|
2000-10-26 14:12:20 -04:00
|
|
|
#ifdef WIN32
|
|
|
|
# include <win32-compat.h>
|
|
|
|
#endif
|
1999-09-03 10:27:29 -04:00
|
|
|
|
|
|
|
#include <glib.h>
|
2001-01-15 19:14:14 -05:00
|
|
|
#ifdef HAVE_GMODULE
|
|
|
|
# include <gmodule.h>
|
|
|
|
#endif
|
1999-09-03 10:27:29 -04:00
|
|
|
|
2000-04-26 04:10:09 -04:00
|
|
|
#include "core/memdebug.h"
|
1999-09-03 10:27:29 -04:00
|
|
|
|
2000-04-14 07:27:14 -04:00
|
|
|
#define g_free_not_null(a) \
|
2001-03-03 20:47:13 -05:00
|
|
|
G_STMT_START { \
|
|
|
|
if (a) g_free(a); \
|
|
|
|
} G_STMT_END
|
2000-04-14 07:27:14 -04:00
|
|
|
|
|
|
|
#define g_free_and_null(a) \
|
2001-03-03 20:47:13 -05:00
|
|
|
G_STMT_START { \
|
|
|
|
if (a) { g_free(a); (a) = NULL; } \
|
|
|
|
} G_STMT_END
|
2000-04-14 07:27:14 -04:00
|
|
|
|
2000-11-23 18:29:32 -05:00
|
|
|
#define G_INPUT_READ (1 << 0)
|
|
|
|
#define G_INPUT_WRITE (1 << 1)
|
1999-09-03 10:27:29 -04:00
|
|
|
|
2000-12-04 17:57:18 -05:00
|
|
|
typedef void (*GInputFunction) (void *data, GIOChannel *source, int condition);
|
1999-09-03 10:27:29 -04:00
|
|
|
|
2000-12-04 17:57:18 -05:00
|
|
|
int g_input_add(GIOChannel *source, int condition,
|
2000-07-16 16:18:05 -04:00
|
|
|
GInputFunction function, void *data);
|
2000-12-04 17:57:18 -05:00
|
|
|
int g_input_add_full(GIOChannel *source, int priority, int condition,
|
2000-10-01 18:12:01 -04:00
|
|
|
GInputFunction function, void *data);
|
1999-09-03 10:27:29 -04:00
|
|
|
|
2000-03-18 07:52:51 -05:00
|
|
|
#define MAX_INT_STRLEN ((sizeof(int) * CHAR_BIT + 2) / 3 + 1)
|
1999-09-03 10:27:29 -04:00
|
|
|
|
2001-01-01 02:45:54 -05:00
|
|
|
typedef struct _IPADDR IPADDR;
|
|
|
|
typedef struct _CONFIG_REC CONFIG_REC;
|
|
|
|
typedef struct _CONFIG_NODE CONFIG_NODE;
|
|
|
|
|
|
|
|
typedef struct _LINEBUF_REC LINEBUF_REC;
|
|
|
|
typedef struct _NET_SENDBUF_REC NET_SENDBUF_REC;
|
|
|
|
typedef struct _RAWLOG_REC RAWLOG_REC;
|
|
|
|
|
|
|
|
typedef struct _CHATNET_REC CHATNET_REC;
|
|
|
|
typedef struct _SERVER_REC SERVER_REC;
|
|
|
|
typedef struct _WI_ITEM_REC WI_ITEM_REC;
|
|
|
|
typedef struct _CHANNEL_REC CHANNEL_REC;
|
|
|
|
typedef struct _QUERY_REC QUERY_REC;
|
|
|
|
typedef struct _NICK_REC NICK_REC;
|
|
|
|
|
|
|
|
typedef struct _SERVER_CONNECT_REC SERVER_CONNECT_REC;
|
|
|
|
typedef struct _SERVER_SETUP_REC SERVER_SETUP_REC;
|
|
|
|
typedef struct _CHANNEL_SETUP_REC CHANNEL_SETUP_REC;
|
|
|
|
|
1999-09-03 10:27:29 -04:00
|
|
|
#endif
|