Added SILC Thread Queue API
[crypto.git] / apps / irssi / src / core / window-item-rec.h
1 /* WI_ITEM_REC definition, used for inheritance */
2
3 int type; /* module_get_uniq_id("CHANNEL/QUERY/xxx", 0) */
4 int chat_type; /* chat_protocol_lookup(xx) */
5 GHashTable *module_data;
6
7 void *window;
8 STRUCT_SERVER_REC *server;
9 char *visible_name;
10
11 time_t createtime;
12 int data_level;
13 char *hilight_color;
14
15 void (*destroy)(WI_ITEM_REC *item);
16
17 const char *(*get_target)(WI_ITEM_REC *item);
18 #define window_item_get_target(item) \
19         ((item)->get_target(item))
20
21 #undef STRUCT_SERVER_REC