X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=apps%2Firssi%2Fsrc%2Fcore%2Fchat-protocols.h;h=ad8c64ba6f7905e083ef4cd08226f1ac0a351961;hp=eeb0075f33f9bf1ff816364da53713b595f119c6;hb=d9991fbb54877db0079a065c9e590032464cf54b;hpb=b3282ad4fb6e35291f6628886dc5aee3c347f2f2 diff --git a/apps/irssi/src/core/chat-protocols.h b/apps/irssi/src/core/chat-protocols.h index eeb0075f..ad8c64ba 100644 --- a/apps/irssi/src/core/chat-protocols.h +++ b/apps/irssi/src/core/chat-protocols.h @@ -1,7 +1,7 @@ #ifndef __CHAT_PROTOCOLS_H #define __CHAT_PROTOCOLS_H -typedef struct { +struct _CHAT_PROTOCOL_REC { int id; unsigned int not_initialized:1; @@ -20,7 +20,7 @@ typedef struct { SERVER_REC *(*server_connect) (SERVER_CONNECT_REC *); CHANNEL_REC *(*channel_create) (SERVER_REC *, const char *, int); QUERY_REC *(*query_create) (const char *, const char *, int); -} CHAT_PROTOCOL_REC; +}; extern GSList *chat_protocols;