view pidgin/plugins/perl/common/GtkDialogs.xs @ 24771:8fb78d30ea83

We have a prpl function "buddy_free" that I don't think any of our in-tree prpls use, and it wasn't called from anywhere. But the facebook prpl uses it to free data associated with each buddy. I think it makes sense to call this function. In the future it would probably be cleaner to have prpls attach to a signal or something.
author Mark Doliner <mark@kingant.net>
date Thu, 18 Dec 2008 02:03:20 +0000
parents 80af064d311c
children 9e9efd1a09a2
line wrap: on
line source

#include "gtkmodule.h"

MODULE = Pidgin::Dialogs  PACKAGE = Pidgin::Dialogs  PREFIX = pidgin_dialogs_
PROTOTYPES: ENABLE

void
pidgin_dialogs_destroy_all()

void
pidgin_dialogs_about()

void
pidgin_dialogs_im()

void
pidgin_dialogs_im_with_user(account, username)
	Purple::Account account
	const char * username

void
pidgin_dialogs_info()

void
pidgin_dialogs_log()

void
pidgin_dialogs_alias_contact(contact)
	Purple::BuddyList::Contact contact

void
pidgin_dialogs_alias_buddy(buddy)
	Purple::BuddyList::Buddy buddy

void
pidgin_dialogs_alias_chat(chat)
	Purple::BuddyList::Chat chat

void
pidgin_dialogs_remove_buddy(buddy)
	Purple::BuddyList::Buddy buddy

void
pidgin_dialogs_remove_group(group)
	Purple::BuddyList::Group group

void
pidgin_dialogs_remove_chat(chat)
	Purple::BuddyList::Chat chat

void
pidgin_dialogs_remove_contact(contact)
	Purple::BuddyList::Contact contact