libpurple/plugins/perl/common/BuddyIcon.xs

Thu, 30 Oct 2008 22:40:49 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Thu, 30 Oct 2008 22:40:49 +0000
changeset 24569
5dbd0617a27d
parent 23983
586866581434
child 33665
55fcd8716546
permissions
-rw-r--r--

Build everything with the *_DISABLE_DEPRECATED flags set. This allows us
to detect when we're still using deprecated functions internally (and by
extension, when we've deprecated something we shouldn't have). In the
course of developing this changeset, I fixed a few such cases.

Given that the plan is to switch from PURPLE_HIDE_STRUCTS to
PURPLE_DISABLE_DEPRECATED as each struct is fully dealt with, this will
also ensure we have no regressions on the struct hiding work.

Deprecated functions are still available to the respective .c file, to
avoid missing prototype errors. Also, Perl and DBus undef the
*_DISABLE_DEPRECATED defines as appropriate so that deprecated functions
will still be exported to Perl plugins and via DBus. (Otherwise, we'd
be breaking backwards compatibility.)

#include "module.h"

MODULE = Purple::Buddy::Icon PACKAGE = Purple::Buddy::Icon   PREFIX = purple_buddy_icon_
PROTOTYPES: ENABLE

Purple::Buddy::Icon
purple_buddy_icon_ref(icon)
	Purple::Buddy::Icon icon

Purple::Buddy::Icon
purple_buddy_icon_unref(icon)
	Purple::Buddy::Icon icon

void
purple_buddy_icon_update(icon)
	Purple::Buddy::Icon icon

void
purple_buddy_icon_set_data(icon, data, len, checksum)
	Purple::Buddy::Icon icon
	void * data
	size_t len
	char *checksum

Purple::Account
purple_buddy_icon_get_account(icon)
	Purple::Buddy::Icon icon

const char *
purple_buddy_icon_get_username(icon)
	Purple::Buddy::Icon icon

const void *
purple_buddy_icon_get_data(icon, len)
	Purple::Buddy::Icon icon
	size_t &len

const char *
purple_buddy_icon_get_extension(icon)
	Purple::Buddy::Icon icon

void
purple_buddy_icon_get_scale_size(spec, width, height)
	Purple::Buddy::Icon::Spec spec
	int *width
	int *height

gchar_own *
purple_buddy_icon_get_full_path(icon);
	Purple::Buddy::Icon icon

MODULE = Purple::Buddy::Icon PACKAGE = Purple::Buddy::Icons   PREFIX = purple_buddy_icons_
PROTOTYPES: ENABLE

void
purple_buddy_icons_set_caching(caching)
	gboolean caching

gboolean
purple_buddy_icons_is_caching()

void
purple_buddy_icons_set_cache_dir(cache_dir)
	const char *cache_dir

const char *
purple_buddy_icons_get_cache_dir();

Purple::Handle
purple_buddy_icons_get_handle();

mercurial