Changes in protocols/msn/msn.c [9cb9868:7b23afd]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/msn.c
r9cb9868 r7b23afd 26 26 #include "nogaim.h" 27 27 #include "msn.h" 28 29 static struct prpl *my_protocol = NULL;30 28 31 29 static void msn_login( struct aim_user *acct ) … … 375 373 } 376 374 377 void msn_init(struct prpl *ret) 378 { 379 ret->protocol = PROTO_MSN; 375 void msn_init() 376 { 377 struct prpl *ret = g_new0(struct prpl, 1); 378 ret->name = "msn"; 380 379 ret->login = msn_login; 381 380 ret->close = msn_close; … … 398 397 ret->rem_deny = msn_rem_deny; 399 398 ret->send_typing = msn_send_typing; 400 ret->cmp_buddynames = g_strcasecmp; 401 402 my_protocol = ret; 403 } 399 400 register_protocol(ret); 401 }
Note: See TracChangeset
for help on using the changeset viewer.