diff options
| author | Jelmer Vernooij <jelmer@samba.org> | 2005-11-15 15:47:17 +0100 | 
|---|---|---|
| committer | Jelmer Vernooij <jelmer@samba.org> | 2005-11-15 15:47:17 +0100 | 
| commit | 9cb9868256c51a45983aac894428230de6035d79 (patch) | |
| tree | dd2b57879e7b493a1de8ac1574a2e90250923e7d /protocols/nogaim.h | |
| parent | 9a103a2bdfb9a0afcc4d23e27d39c1a124194e18 (diff) | |
Remove handle_cmp() replacing it by a protocol-specific function.
Diffstat (limited to 'protocols/nogaim.h')
| -rw-r--r-- | protocols/nogaim.h | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/protocols/nogaim.h b/protocols/nogaim.h index 4e10330a..5fc9aca5 100644 --- a/protocols/nogaim.h +++ b/protocols/nogaim.h @@ -219,6 +219,8 @@ struct prpl {  	void (* buddy_free)	(struct buddy *);  	char *(* get_status_string) (struct gaim_connection *gc, int stat); + +	int (* cmp_buddynames) (const char *who1, const char *who2);  };  #define PROTO_TOC	0 @@ -258,7 +260,6 @@ char *set_eval_charset( irc_t *irc, set_t *set, char *value );  void nogaim_init();  int proto_away( struct gaim_connection *gc, char *away );  char *set_eval_away_devoice( irc_t *irc, set_t *set, char *value ); -int handle_cmp( char *a, char *b, int protocol );  gboolean auto_reconnect( gpointer data );  void cancel_auto_reconnect( struct account *a ); | 
