- Timestamp:
- 2012-10-20T00:02:45Z (12 years ago)
- Branches:
- master
- Children:
- 3cd37d7
- Parents:
- 6042a54
- Location:
- protocols
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/msn.h
r6042a54 r509cf60 242 242 243 243 /* msn_util.c */ 244 int msn_logged_in( struct im_connection *ic );245 244 int msn_buddy_list_add( struct im_connection *ic, msn_buddy_flags_t list, const char *who, const char *realname_, const char *group ); 246 245 int msn_buddy_list_remove( struct im_connection *ic, msn_buddy_flags_t list, const char *who, const char *group ); -
protocols/msn/msn_util.c
r6042a54 r509cf60 29 29 #include "soap.h" 30 30 #include <ctype.h> 31 32 int msn_logged_in( struct im_connection *ic )33 {34 imcb_connected( ic );35 36 return( 0 );37 }38 31 39 32 static char *adlrml_entry( const char *handle_, msn_buddy_flags_t list ) -
protocols/yahoo/libyahoo2.c
r6042a54 r509cf60 374 374 */ 375 375 376 #if 0 376 377 static struct yahoo_input_data *find_input_by_id_and_webcam_user(int id, 377 378 const char *who) … … 390 391 return NULL; 391 392 } 393 #endif 392 394 393 395 static struct yahoo_input_data *find_input_by_id_and_type(int id, … … 2640 2642 } 2641 2643 2644 #if 0 2642 2645 static struct yab *yahoo_yab_read(unsigned char *d, int len) 2643 2646 { … … 2790 2793 return yab; 2791 2794 } 2795 #endif 2792 2796 2793 2797 static char *yahoo_getwebcam_master(struct yahoo_input_data *yid) … … 3097 3101 } 3098 3102 3103 #if 0 3099 3104 static void yahoo_process_yab_connection(struct yahoo_input_data *yid, int over) 3100 3105 { … … 3156 3161 yd->buddies); 3157 3162 } 3163 #endif 3158 3164 3159 3165 static void yahoo_process_search_connection(struct yahoo_input_data *yid, … … 3411 3417 int over) = { 3412 3418 yahoo_process_pager_connection, yahoo_process_ft_connection, 3413 yahoo_process_yab_connection,3419 NULL, /*yahoo_process_yab_connection, */ 3414 3420 yahoo_process_webcam_master_connection, 3415 3421 yahoo_process_webcam_connection, … … 3755 3761 } 3756 3762 3763 #if 0 3757 3764 /* FIXME Get address book from address.yahoo.com instead */ 3758 3765 void yahoo_get_yab(int id) … … 3856 3863 _yahoo_http_post_connected, yad); 3857 3864 } 3865 #endif 3858 3866 3859 3867 void yahoo_set_identity_status(int id, const char *identity, int active) … … 4287 4295 } 4288 4296 4297 #if 0 4289 4298 void yahoo_get_chatrooms(int id, int chatroomid) 4290 4299 { … … 4729 4738 /* Not Implemented */ 4730 4739 } 4740 #endif 4731 4741 4732 4742 /* File Transfer */ … … 4756 4766 }; 4757 4767 4768 #if 0 4758 4769 static char *yahoo_get_random(void) 4759 4770 { … … 4785 4796 return strdup(out); 4786 4797 } 4798 #endif 4787 4799 4788 4800 static int _are_same_id(const void *sfd1, const void *id) … … 5165 5177 } 5166 5178 5179 #if 0 5167 5180 void yahoo_send_file(int id, const char *who, const char *msg, 5168 5181 const char *name, unsigned long size, … … 5243 5256 yahoo_remove_active_transfer(sfd); 5244 5257 } 5258 #endif 5245 5259 5246 5260 static void yahoo_process_ft_connection(struct yahoo_input_data *yid, int over) … … 5356 5370 /* End File Transfer */ 5357 5371 5372 #if 0 5358 5373 enum yahoo_status yahoo_current_status(int id) 5359 5374 { … … 5405 5420 return NULL; 5406 5421 } 5422 #endif 5407 5423 5408 5424 const char *yahoo_get_profile_url(void)
Note: See TracChangeset
for help on using the changeset viewer.