pidgin/plugins/perl/common/GtkThemes.xs

Tue, 27 Mar 2007 21:01:08 +0000

author
Luke Schierer <lschiere@pidgin.im>
date
Tue, 27 Mar 2007 21:01:08 +0000
changeset 16016
38a4aed4924c
parent 15899
75f0041f72b8
child 16276
8853d1da70f5
child 20478
46933dc62880
permissions
-rw-r--r--

translation updates. I would see if they compile, but I can't compile at all right now.

#include "gtkmodule.h"

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

void
pidginthemes_init()

gboolean
pidginthemes_smileys_disabled()

void
pidginthemes_smiley_theme_probe()

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

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

mercurial