Changeset 509cf60


Ignore:
Timestamp:
2012-10-20T00:02:45Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
3cd37d7
Parents:
6042a54
Message:

Some more removals. Using ifdefs instead of read deletions in Yahoo! dir to
not make merges too complicated (although upstream really seems dead at this
point :-/).

Location:
protocols
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/msn.h

    r6042a54 r509cf60  
    242242
    243243/* msn_util.c */
    244 int msn_logged_in( struct im_connection *ic );
    245244int msn_buddy_list_add( struct im_connection *ic, msn_buddy_flags_t list, const char *who, const char *realname_, const char *group );
    246245int 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  
    2929#include "soap.h"
    3030#include <ctype.h>
    31 
    32 int msn_logged_in( struct im_connection *ic )
    33 {
    34         imcb_connected( ic );
    35        
    36         return( 0 );
    37 }
    3831
    3932static char *adlrml_entry( const char *handle_, msn_buddy_flags_t list )
  • protocols/yahoo/libyahoo2.c

    r6042a54 r509cf60  
    374374*/
    375375
     376#if 0
    376377static struct yahoo_input_data *find_input_by_id_and_webcam_user(int id,
    377378        const char *who)
     
    390391        return NULL;
    391392}
     393#endif
    392394
    393395static struct yahoo_input_data *find_input_by_id_and_type(int id,
     
    26402642}
    26412643
     2644#if 0
    26422645static struct yab *yahoo_yab_read(unsigned char *d, int len)
    26432646{
     
    27902793        return yab;
    27912794}
     2795#endif
    27922796
    27932797static char *yahoo_getwebcam_master(struct yahoo_input_data *yid)
     
    30973101}
    30983102
     3103#if 0
    30993104static void yahoo_process_yab_connection(struct yahoo_input_data *yid, int over)
    31003105{
     
    31563161                        yd->buddies);
    31573162}
     3163#endif
    31583164
    31593165static void yahoo_process_search_connection(struct yahoo_input_data *yid,
     
    34113417        int over) = {
    34123418yahoo_process_pager_connection, yahoo_process_ft_connection,
    3413                 yahoo_process_yab_connection,
     3419                NULL, /*yahoo_process_yab_connection, */
    34143420                yahoo_process_webcam_master_connection,
    34153421                yahoo_process_webcam_connection,
     
    37553761}
    37563762
     3763#if 0
    37573764/* FIXME Get address book from address.yahoo.com instead */
    37583765void yahoo_get_yab(int id)
     
    38563863                _yahoo_http_post_connected, yad);
    38573864}
     3865#endif
    38583866
    38593867void yahoo_set_identity_status(int id, const char *identity, int active)
     
    42874295}
    42884296
     4297#if 0
    42894298void yahoo_get_chatrooms(int id, int chatroomid)
    42904299{
     
    47294738        /* Not Implemented */
    47304739}
     4740#endif
    47314741
    47324742/* File Transfer */
     
    47564766};
    47574767
     4768#if 0
    47584769static char *yahoo_get_random(void)
    47594770{
     
    47854796        return strdup(out);
    47864797}
     4798#endif
    47874799
    47884800static int _are_same_id(const void *sfd1, const void *id)
     
    51655177}
    51665178
     5179#if 0
    51675180void yahoo_send_file(int id, const char *who, const char *msg,
    51685181        const char *name, unsigned long size,
     
    52435256                yahoo_remove_active_transfer(sfd);
    52445257}
     5258#endif
    52455259
    52465260static void yahoo_process_ft_connection(struct yahoo_input_data *yid, int over)
     
    53565370/* End File Transfer */
    53575371
     5372#if 0
    53585373enum yahoo_status yahoo_current_status(int id)
    53595374{
     
    54055420        return NULL;
    54065421}
     5422#endif
    54075423
    54085424const char *yahoo_get_profile_url(void)
Note: See TracChangeset for help on using the changeset viewer.