Wed, 17 Jan 2007 18:57:22 +0000
[gaim-migrate @ 18149]
clean out the translations tracker, including some gettext stuff from bjorn
| 15066 | 1 | #include "module.h" |
| 2 | ||
| 3 | MODULE = Gaim::Core PACKAGE = Gaim::Core PREFIX = gaim_core_ | |
| 4 | PROTOTYPES: ENABLE | |
| 5 | ||
| 6 | gboolean | |
| 7 | gaim_core_quit_cb() | |
| 8 | PPCODE: | |
| 9 | /* The argument to gaim_core_quit_cb is not used, | |
| 10 | * so there's little point in requiring it on the | |
| 11 | * Perl side. */ | |
| 12 | RETVAL = gaim_core_quit_cb(NULL); | |
| 13 | ST(0) = boolSV(RETVAL); | |
| 14 | sv_2mortal(ST(0)); | |
| 15 | ||
| 16 | const char * | |
| 17 | gaim_core_get_version() | |
| 18 | ||
| 19 | const char * | |
| 20 | gaim_core_get_ui() | |
| 21 | ||
| 22 | void | |
| 23 | gaim_core_set_ui_ops(ops) | |
| 24 | Gaim::Core::UiOps ops | |
| 25 | ||
| 26 | Gaim::Core::UiOps | |
| 27 | gaim_core_get_ui_ops() | |
| 28 |