diff options
author | VMiklos <vmiklos@frugalware.org> | 2007-10-06 21:59:58 +0200 |
---|---|---|
committer | VMiklos <vmiklos@frugalware.org> | 2007-10-06 21:59:58 +0200 |
commit | 66c9558fd9e178ba54a294138effbaca83988920 (patch) | |
tree | f83f0bd6855fb10214f6204f94cab01320b8b8e5 | |
parent | 72aa7f08b94aada5a15ee1185e468d695ef54106 (diff) |
new dummy skype_chat_msg() function
-rw-r--r-- | skype/skype.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/skype/skype.c b/skype/skype.c index 615fca01..da7bf09a 100644 --- a/skype/skype.c +++ b/skype/skype.c @@ -584,6 +584,11 @@ static void skype_remove_buddy( struct im_connection *ic, char *who, char *group g_free(nick); } +int skype_chat_msg( struct groupchat *c, char *message, int flags ) +{ + // TODO: this is just here atm to prevent a segfault +} + void init_plugin(void) { struct prpl *ret = g_new0( struct prpl, 1 ); @@ -597,6 +602,7 @@ void init_plugin(void) ret->set_away = skype_set_away; ret->add_buddy = skype_add_buddy; ret->remove_buddy = skype_remove_buddy; + ret->chat_msg = skype_chat_msg; ret->handle_cmp = g_strcasecmp; register_protocol( ret ); } |