pidgin/plugins/perl/common/GtkThemes.xs

Sat, 28 Apr 2007 18:32:47 +0000

author
Mark Doliner <markdoliner@pidgin.im>
date
Sat, 28 Apr 2007 18:32:47 +0000
changeset 16661
f3d9a3646735
parent 16276
8853d1da70f5
child 18068
b6554e3c8224
child 35312
add13288757e
permissions
-rw-r--r--

merge of '05ee74f25b2a53e54df99586c37fba4dfe323a7d'
and 'ef90f2b160577f9ed2c7d9feeed347644f5f9943'

#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