libpurple/protocols/novell/novell.c

changeset 40697
81f81f5d2f39
parent 40680
f9ea6d5e8992
child 40708
53a26c29d26c
equal deleted inserted replaced
40696:cf58ec89b1e4 40697:81f81f5d2f39
2403 } 2403 }
2404 } 2404 }
2405 } 2405 }
2406 2406
2407 static void 2407 static void
2408 novell_chat_leave(PurpleConnection * gc, int id) 2408 novell_chat_leave(PurpleProtocolChat *protocol_chat, PurpleConnection *gc,
2409 gint id)
2409 { 2410 {
2410 NMConference *conference; 2411 NMConference *conference;
2411 NMUser *user; 2412 NMUser *user;
2412 PurpleChatConversation *chat; 2413 PurpleChatConversation *chat;
2413 GSList *cnode; 2414 GSList *cnode;
2433 2434
2434 purple_serv_got_chat_left(gc, id); 2435 purple_serv_got_chat_left(gc, id);
2435 } 2436 }
2436 2437
2437 static void 2438 static void
2438 novell_chat_invite(PurpleConnection *gc, int id, 2439 novell_chat_invite(PurpleProtocolChat *protocol_chat, PurpleConnection *gc,
2439 const char *message, const char *who) 2440 gint id, const gchar *message, const gchar *who)
2440 { 2441 {
2441 NMConference *conference; 2442 NMConference *conference;
2442 NMUser *user; 2443 NMUser *user;
2443 PurpleChatConversation *chat; 2444 PurpleChatConversation *chat;
2444 GSList *cnode; 2445 GSList *cnode;
2470 } 2471 }
2471 } 2472 }
2472 } 2473 }
2473 } 2474 }
2474 2475
2475 static int 2476 static gint
2476 novell_chat_send(PurpleConnection * gc, int id, PurpleMessage *msg) 2477 novell_chat_send(PurpleProtocolChat *protocol_chat, PurpleConnection *gc,
2478 gint id, PurpleMessage *msg)
2477 { 2479 {
2478 NMConference *conference; 2480 NMConference *conference;
2479 PurpleChatConversation *chat; 2481 PurpleChatConversation *chat;
2480 GSList *cnode; 2482 GSList *cnode;
2481 NMMessage *message; 2483 NMMessage *message;

mercurial