diff options
author | Tomasz Wasilczyk <twasilczyk@pidgin.im> | 2013-09-21 11:54:03 +0200 |
---|---|---|
committer | Tomasz Wasilczyk <twasilczyk@pidgin.im> | 2013-09-21 11:54:03 +0200 |
commit | 8b1d74a7e246b4408d06d579bd65c180bc8b6b5c (patch) | |
tree | 16bfd9224ae5e65c214952d74713863606a973be /libpurple/plugins/perl/common/Notify.xs | |
parent | 0935e5e2da1d459207a0456785e4e98906c4f9e9 (diff) | |
download | pidgin-8b1d74a7e246b4408d06d579bd65c180bc8b6b5c.tar.gz |
Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Diffstat (limited to 'libpurple/plugins/perl/common/Notify.xs')
-rw-r--r-- | libpurple/plugins/perl/common/Notify.xs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpurple/plugins/perl/common/Notify.xs b/libpurple/plugins/perl/common/Notify.xs index 1ec708e9dc..5bac54fb4b 100644 --- a/libpurple/plugins/perl/common/Notify.xs +++ b/libpurple/plugins/perl/common/Notify.xs @@ -102,6 +102,10 @@ purple_notify_message(handle, type, title, primary, secondary, cb, user_data) const char *secondary Purple::NotifyCloseCallback cb gpointer user_data +CODE: + RETVAL = purple_notify_message(handle, type, title, primary, secondary, NULL, cb, user_data); +OUTPUT: + RETVAL void * purple_notify_searchresults(gc, title, primary, secondary, results, cb, user_data) |