diff options
author | esainane <esainane+github@gmail.com> | 2015-12-11 15:41:35 +1300 |
---|---|---|
committer | esainane <esainane+github@gmail.com> | 2015-12-11 15:41:35 +1300 |
commit | 4c29622f216b872cb5abaa167c0899999955fecb (patch) | |
tree | c18c05f1d9f1879209e3dcc183a8f6fe19e7c654 /protocols/nogaim.h | |
parent | 977a9d5473af8a13364c896eeb9ed83d55ce12e8 (diff) |
Remove nonexistent forward declaration
imcb_find_buddy is mentioned only in nogaim.h, and is never defined anywhere.
This is misleading for plugin authors, who were probably looking for
(the actually implemented) imcb_buddy_by_handle instead.
Diffstat (limited to 'protocols/nogaim.h')
-rw-r--r-- | protocols/nogaim.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/protocols/nogaim.h b/protocols/nogaim.h index 60f2898e..3b271b45 100644 --- a/protocols/nogaim.h +++ b/protocols/nogaim.h @@ -321,7 +321,6 @@ G_MODULE_EXPORT void imcb_ask_add(struct im_connection *ic, const char *handle, * server confirms that the add was successful. Don't forget to do this! */ G_MODULE_EXPORT void imcb_add_buddy(struct im_connection *ic, const char *handle, const char *group); G_MODULE_EXPORT void imcb_remove_buddy(struct im_connection *ic, const char *handle, char *group); -G_MODULE_EXPORT struct buddy *imcb_find_buddy(struct im_connection *ic, char *handle); G_MODULE_EXPORT void imcb_rename_buddy(struct im_connection *ic, const char *handle, const char *realname); G_MODULE_EXPORT void imcb_buddy_nick_hint(struct im_connection *ic, const char *handle, const char *nick); G_MODULE_EXPORT void imcb_buddy_action_response(bee_user_t *bu, const char *action, char * const args[], void *data); |