libpurple/plugins/perl/common/ImgStore.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 16550
3254ec9f73af
child 18068
b6554e3c8224
child 33661
2ebcb105e606
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::ImgStore  PACKAGE = Purple::ImgStore  PREFIX = purple_imgstore_
PROTOTYPES: ENABLE

Purple::StoredImage
purple_imgstore_add(data, size, filename)
	void *data
	size_t size
	const char *filename

int
purple_imgstore_add_with_id(data, size, filename)
	void *data
	size_t size
	const char *filename

Purple::StoredImage
purple_imgstore_find_by_id(id)
	int id

gconstpointer 
purple_imgstore_get_data(i)
	Purple::StoredImage i

const char *
purple_imgstore_get_filename(i)
	Purple::StoredImage i

size_t 
purple_imgstore_get_size(i)
	Purple::StoredImage i

const char *
purple_imgstore_get_extension(i)
	Purple::StoredImage i

Purple::StoredImage
purple_imgstore_ref(id)
	Purple::StoredImage id

Purple::StoredImage
purple_imgstore_unref(id)
	Purple::StoredImage id

void
purple_imgstore_ref_by_id(id)
	int id

void
purple_imgstore_unref_by_id(id)
	int id

mercurial