summary refs log tree commit diff stats
path: root/src/fe-gtk/chanlist.h
blob: 481beec3e0676b65cd9eee27b4bcbc4a385fd1e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* HexChat
 * Copyright (C) 1998-2010 Peter Zelezny.
 * Copyright (C) 2009-2013 Berke Viktor.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef HEXCHAT_CHANLIST_H
#define HEXCHAT_CHANLIST_H

void chanlist_opengui (server *serv, int do_refresh);

#endif
, char *var, char *dest, int dest_len); int cfg_get_bool (char *var); int cfg_get_int_with_result (char *cfg, char *var, int *result); int cfg_get_int (char *cfg, char *var); int cfg_put_int (int fh, int value, char *var); int cfg_get_color (char *cfg, char *var, int *r, int *g, int *b); int cfg_put_color (int fh, int r, int g, int b, char *var); char *get_xdir_fs (void); char *get_xdir_utf8 (void); void load_config (void); int save_config (void); void list_free (GSList ** list); void list_loadconf (char *file, GSList ** list, char *defaultconf); int list_delentry (GSList ** list, char *name); void list_addentry (GSList ** list, char *cmd, char *name); int cmd_set (session *sess, char *tbuf, char *word[], char *word_eol[]); int xchat_open_file (char *file, int flags, int mode, int xof_flags); FILE *xchat_fopen_file (const char *file, const char *mode, int xof_flags); #define XOF_DOMODE 1 #define XOF_FULLPATH 2 #define STRUCT_OFFSET_STR(type,field) \ ( (unsigned int) (((char *) (&(((type *) NULL)->field)))- ((char *) NULL)) ) #define STRUCT_OFFSET_INT(type,field) \ ( (unsigned int) (((int *) (&(((type *) NULL)->field)))- ((int *) NULL)) ) #define P_OFFSET(field) STRUCT_OFFSET_STR(struct hexchatprefs, field),sizeof(prefs.field) #define P_OFFSETNL(field) STRUCT_OFFSET_STR(struct hexchatprefs, field) #define P_OFFINT(field) STRUCT_OFFSET_INT(struct hexchatprefs, field),0 #define P_OFFINTNL(field) STRUCT_OFFSET_INT(struct hexchatprefs, field) struct prefs { char *name; unsigned short offset; unsigned short len; unsigned short type; }; #define TYPE_STR 0 #define TYPE_INT 1 #define TYPE_BOOL 2 #endif