Changeset 88b3a07


Ignore:
Timestamp:
2006-04-13T07:15:42Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
c99af3a
Parents:
11bcee9
Message:

Cleaned up two more functions from nogaim.

Location:
protocols
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r11bcee9 r88b3a07  
    959959       
    960960        return( 0 );
    961 }
    962 
    963 
    964 /* prefs.c */
    965 
    966 /* Necessary? */
    967 void build_block_list()
    968 {
    969         return;
    970 }
    971 
    972 void build_allow_list()
    973 {
    974         return;
    975961}
    976962
  • protocols/nogaim.h

    r11bcee9 r88b3a07  
    220220
    221221/* list.c */
    222 G_MODULE_EXPORT int bud_list_cache_exists( struct gaim_connection *gc );
    223 G_MODULE_EXPORT void do_import( struct gaim_connection *gc, void *null );
    224222G_MODULE_EXPORT void add_buddy( struct gaim_connection *gc, char *group, char *handle, char *realname );
    225223G_MODULE_EXPORT struct buddy *find_buddy( struct gaim_connection *gc, char *handle );
    226 G_MODULE_EXPORT void do_export( struct gaim_connection *gc );
    227224G_MODULE_EXPORT void signoff_blocked( struct gaim_connection *gc );
    228225
     
    245242G_MODULE_EXPORT void serv_got_chat_left( struct gaim_connection *gc, int id );
    246243
    247 /* prefs.c */
    248 G_MODULE_EXPORT void build_block_list();
    249 G_MODULE_EXPORT void build_allow_list();
    250 
    251244struct conversation *conv_findchannel( char *channel );
    252245
  • protocols/oscar/oscar.c

    r11bcee9 r88b3a07  
    20582058                                                name = g_strdup(normalize(curitem->name));
    20592059                                                gc->permit = g_slist_append(gc->permit, name);
    2060                                                 build_allow_list();
    20612060                                                tmp++;
    20622061                                        }
     
    20722071                                                name = g_strdup(normalize(curitem->name));
    20732072                                                gc->deny = g_slist_append(gc->deny, name);
    2074                                                 build_block_list();
    20752073                                                tmp++;
    20762074                                        }
Note: See TracChangeset for help on using the changeset viewer.