Mercurial > pidgin.yaz
view gtk/plugins/perl/common/GtkThemes.xs @ 15204:f814b2df9cce
[gaim-migrate @ 17993]
Blocking on Google Talk. Our Privacy API sucks so bad that even with no prior support for blocking in Jabber, this has no interface changes. If someone wanted to implement the deprecated Jabber privacy lists API, though, that would be ok by me.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Thu, 14 Dec 2006 04:56:54 +0000 |
parents | 3ed24586efcb |
children |
line wrap: on
line source
#include "gtkmodule.h" MODULE = Gaim::GtkUI::Themes PACKAGE = Gaim::GtkUI::Themes PREFIX = gaim_gtkthemes_ PROTOTYPES: ENABLE void gaim_gtkthemes_init() gboolean gaim_gtkthemes_smileys_disabled() void gaim_gtkthemes_smiley_theme_probe() void gaim_gtkthemes_load_smiley_theme(file, load) const char * file gboolean load void gaim_gtkthemes_get_proto_smileys(id) const char * id PREINIT: GSList *l; PPCODE: for (l = gaim_gtkthemes_get_proto_smileys(id); l != NULL; l = l->next) { XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::GtkUI::IMHtml::Smiley"))); }