X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=apps%2Firssi%2Fsrc%2Fcore%2Fnick-rec.h;fp=apps%2Firssi%2Fsrc%2Fcore%2Fnick-rec.h;h=0000000000000000000000000000000000000000;hb=72c2de619079457f7a68100eb13385275a424a23;hp=aaedded98b568c6cee9993d5da50e0563c3c985f;hpb=e7b6c157b80152bf9fb9266e6bdd93f9fb0db776;p=runtime.git diff --git a/apps/irssi/src/core/nick-rec.h b/apps/irssi/src/core/nick-rec.h deleted file mode 100644 index aaedded9..00000000 --- a/apps/irssi/src/core/nick-rec.h +++ /dev/null @@ -1,28 +0,0 @@ -/* NICK_REC definition, used for inheritance */ - -int type; /* module_get_uniq_id("NICK", 0) */ -int chat_type; /* chat_protocol_lookup(xx) */ - -time_t last_check; /* last time gone was checked */ - -char *nick; -char *host; -char *realname; -int hops; - -/* status in server */ -unsigned int gone:1; -unsigned int serverop:1; - -/* status in channel */ -unsigned int send_massjoin:1; /* Waiting to be sent in massjoin signal */ -unsigned int op:1; -unsigned int halfop:1; -unsigned int voice:1; -char other; - -/*GHashTable *module_data;*/ - -void *unique_id; /* unique ID to use for comparing if one nick is in another channels, - or NULL = nicks are unique, just keep comparing them. */ -NICK_REC *next; /* support for multiple identically named nicks */