summary refs log tree commit diff stats
path: root/src/common/xchatc.h
blob: c22e17dded5ff297c8c37f26eed06b3cedecacdc (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
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { colo
#ifndef XCHAT_C_H
#define XCHAT_C_H

extern struct xchatprefs prefs;

extern int xchat_is_quitting;
extern gint arg_skip_plugins;	/* command-line args */
extern gint arg_dont_autoconnect;
extern char *arg_url;
extern char *arg_command;
extern gint
>extern session *current_tab; extern GSList *popup_list; extern GSList *button_list; extern GSList *dlgbutton_list; extern GSList *command_list; extern GSList *ctcp_list; extern GSList *replace_list; extern GSList *sess_list; extern GSList *dcc_list; extern GSList *ignore_list; extern GSList *usermenu_list; extern GSList *urlhandler_list; extern GSList *tabmenu_list; session * find_channel (server *serv, char *chan); session * find_dialog (server *serv, char *nick); session * new_ircwindow (server *serv, char *name, int type, int focus); int is_session (session * sess); void session_free (session *killsess); void lag_check (void); void xchat_exit (void); void xchat_exec (const char *cmd); void xchat_execv (char * const argv[]); #endif