pidgin/plugins/perl/common/GtkThemes.xs

Sun, 22 Jul 2007 01:28:19 +0000

author
Eric Polino <aluink@pidgin.im>
date
Sun, 22 Jul 2007 01:28:19 +0000
branch
soc.2007.finchfeat
changeset 19307
0027732ddb26
parent 16276
8853d1da70f5
child 18068
b6554e3c8224
child 35312
add13288757e
permissions
-rw-r--r--

propagate from branch 'tmpbranch' (head 99adc2a159d591428565c43f8121b7f0d5cdf6f6)
to branch 'im.pidgin.soc.2007.finchfeat' (head 4c0284a98465984103fcdcdf66fce684482034ce)

#include "gtkmodule.h"

MODULE = Pidgin::Themes  PACKAGE = Pidgin::Themes  PREFIX = pidgin_themes_
PROTOTYPES: ENABLE

void
pidgin_themes_init()

gboolean
pidgin_themes_smileys_disabled()

void
pidgin_themes_smiley_theme_probe()

void
pidgin_themes_load_smiley_theme(file, load)
	const char * file
	gboolean load

void
pidgin_themes_get_proto_smileys(id)
	const char * id
PREINIT:
	GSList *l;
PPCODE:
	for (l = pidgin_themes_get_proto_smileys(id); l != NULL; l = l->next) {
		XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Pidgin::IMHtml::Smiley")));
	}

mercurial