Mercurial > pidgin.yaz
view plugins/perl/common/Gaim.xs @ 6567:6e25e1e08ffb
[gaim-migrate @ 7089]
Perl signal callbacks just got more spiffy. You can now embed a sub inside
of a callback instead of linking to the function.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Fri, 22 Aug 2003 04:09:06 +0000 |
parents | 28b38803d0bb |
children | 33486b749aa9 |
line wrap: on
line source
#include "module.h" #include "../perl-handlers.h" MODULE = Gaim PACKAGE = Gaim PROTOTYPES: ENABLE void timeout_add(plugin, seconds, func, data) Gaim::Plugin plugin int seconds const char *func SV *data CODE: gaim_perl_timeout_add(plugin, seconds, func, data); void signal_connect(instance, signal, plugin, callback, data) void *instance const char *signal Gaim::Plugin plugin SV *callback SV *data CODE: gaim_perl_signal_connect(plugin, instance, signal, callback, data); void signal_disconnect(instance, signal, plugin) void *instance const char *signal Gaim::Plugin plugin CODE: gaim_perl_signal_disconnect(plugin, instance, signal); void debug(level, category, string) const char *level const char *category const char *string CODE: if (!strcmp(level, "misc")) gaim_debug(GAIM_DEBUG_MISC, category, string); else if (!strcmp(level, "info")) gaim_debug(GAIM_DEBUG_INFO, category, string); else if (!strcmp(level, "warning")) gaim_debug(GAIM_DEBUG_WARNING, category, string); else if (!strcmp(level, "error")) gaim_debug(GAIM_DEBUG_ERROR, category, string); else if (!strcmp(level, "fatal")) gaim_debug(GAIM_DEBUG_FATAL, category, string); else croak("Unknown debug level type '%s'", level); void debug_misc(category, string) const char *category const char *string CODE: gaim_debug(GAIM_DEBUG_MISC, category, string); void debug_info(category, string) const char *category const char *string CODE: gaim_debug(GAIM_DEBUG_INFO, category, string); void debug_warning(category, string) const char *category const char *string CODE: gaim_debug(GAIM_DEBUG_WARNING, category, string); void debug_error(category, string) const char *category const char *string CODE: gaim_debug(GAIM_DEBUG_ERROR, category, string); void debug_fatal(category, string) const char *category const char *string CODE: gaim_debug(GAIM_DEBUG_FATAL, category, string); void deinit() PREINIT: GList *l; CODE: gaim_perl_timeout_clear(); BOOT: GAIM_PERL_BOOT(Account); GAIM_PERL_BOOT(BuddyList); GAIM_PERL_BOOT(BuddyList__Group); GAIM_PERL_BOOT(BuddyList__Buddy); GAIM_PERL_BOOT(BuddyList__Chat);