~ubuntu-branches/ubuntu/feisty/irssi/feisty-backports

« back to all changes in this revision

Viewing changes to src/core/window-item-rec.h

  • Committer: Bazaar Package Importer
  • Author(s): David Pashley
  • Date: 2005-12-10 21:25:51 UTC
  • Revision ID: james.westby@ubuntu.com-20051210212551-5qwm108g7inyu2f2
Tags: upstream-0.8.10
ImportĀ upstreamĀ versionĀ 0.8.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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