Mercurial > pidgin
view libgaim/plugins/perl/common/Core.xs @ 15314:4a4e1dfd8716
[gaim-migrate @ 18105]
Can't use new protocol version because of different login scheme. Revert to old version.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Huetsch <markhuetsch> |
|---|---|
| date | Thu, 11 Jan 2007 07:26:28 +0000 |
| parents | 5e07a6f8eb33 |
| children |
line wrap: on
line source
#include "module.h" MODULE = Gaim::Core PACKAGE = Gaim::Core PREFIX = gaim_core_ PROTOTYPES: ENABLE gboolean gaim_core_quit_cb() PPCODE: /* The argument to gaim_core_quit_cb is not used, * so there's little point in requiring it on the * Perl side. */ RETVAL = gaim_core_quit_cb(NULL); ST(0) = boolSV(RETVAL); sv_2mortal(ST(0)); const char * gaim_core_get_version() const char * gaim_core_get_ui() void gaim_core_set_ui_ops(ops) Gaim::Core::UiOps ops Gaim::Core::UiOps gaim_core_get_ui_ops()
