| |
1 #define PIDGIN_PERL_BOOT_PROTO(x) \ |
| |
2 void boot_Pidgin__##x(pTHX_ CV *cv) |
| |
3 |
| |
4 #define PIDGIN_PERL_BOOT(x) \ |
| |
5 purple_perl_callXS(boot_Pidgin__##x, cv, mark) |
| |
6 |
| |
7 #include "gtkmodule.h" |
| |
8 |
| |
9 /* Prototypes for the BOOT section below. */ |
| |
10 PIDGIN_PERL_BOOT_PROTO(Account); |
| |
11 PIDGIN_PERL_BOOT_PROTO(BuddyList); |
| |
12 PIDGIN_PERL_BOOT_PROTO(Connection); |
| |
13 PIDGIN_PERL_BOOT_PROTO(Conversation); |
| |
14 PIDGIN_PERL_BOOT_PROTO(Conversation__Window); |
| |
15 PIDGIN_PERL_BOOT_PROTO(Debug); |
| |
16 PIDGIN_PERL_BOOT_PROTO(Dialogs); |
| |
17 PIDGIN_PERL_BOOT_PROTO(IMHtml); |
| |
18 PIDGIN_PERL_BOOT_PROTO(IMHtmlToolbar); |
| |
19 PIDGIN_PERL_BOOT_PROTO(Log); |
| |
20 PIDGIN_PERL_BOOT_PROTO(MenuTray); |
| |
21 PIDGIN_PERL_BOOT_PROTO(Plugin); |
| |
22 PIDGIN_PERL_BOOT_PROTO(PluginPref); |
| |
23 PIDGIN_PERL_BOOT_PROTO(Pounce); |
| |
24 PIDGIN_PERL_BOOT_PROTO(Prefs); |
| |
25 PIDGIN_PERL_BOOT_PROTO(Privacy); |
| |
26 PIDGIN_PERL_BOOT_PROTO(Roomlist); |
| |
27 PIDGIN_PERL_BOOT_PROTO(Status); |
| |
28 #ifndef _WIN32 |
| |
29 PIDGIN_PERL_BOOT_PROTO(Session); |
| |
30 #endif |
| |
31 PIDGIN_PERL_BOOT_PROTO(Sound); |
| |
32 PIDGIN_PERL_BOOT_PROTO(StatusBox); |
| |
33 PIDGIN_PERL_BOOT_PROTO(Themes); |
| |
34 PIDGIN_PERL_BOOT_PROTO(Utils); |
| |
35 PIDGIN_PERL_BOOT_PROTO(Xfer); |
| |
36 |
| |
37 MODULE = Pidgin PACKAGE = Pidgin PREFIX = pidgin_ |
| |
38 PROTOTYPES: ENABLE |
| |
39 |
| |
40 BOOT: |
| |
41 PIDGIN_PERL_BOOT(Account); |
| |
42 PIDGIN_PERL_BOOT(BuddyList); |
| |
43 PIDGIN_PERL_BOOT(Connection); |
| |
44 PIDGIN_PERL_BOOT(Conversation); |
| |
45 PIDGIN_PERL_BOOT(Conversation__Window); |
| |
46 PIDGIN_PERL_BOOT(Debug); |
| |
47 PIDGIN_PERL_BOOT(Dialogs); |
| |
48 PIDGIN_PERL_BOOT(IMHtml); |
| |
49 PIDGIN_PERL_BOOT(IMHtmlToolbar); |
| |
50 PIDGIN_PERL_BOOT(Log); |
| |
51 PIDGIN_PERL_BOOT(MenuTray); |
| |
52 PIDGIN_PERL_BOOT(Plugin); |
| |
53 PIDGIN_PERL_BOOT(PluginPref); |
| |
54 PIDGIN_PERL_BOOT(Pounce); |
| |
55 PIDGIN_PERL_BOOT(Prefs); |
| |
56 PIDGIN_PERL_BOOT(Privacy); |
| |
57 PIDGIN_PERL_BOOT(Roomlist); |
| |
58 PIDGIN_PERL_BOOT(Status); |
| |
59 #ifndef _WIN32 |
| |
60 PIDGIN_PERL_BOOT(Session); |
| |
61 #endif |
| |
62 PIDGIN_PERL_BOOT(Sound); |
| |
63 PIDGIN_PERL_BOOT(StatusBox); |
| |
64 PIDGIN_PERL_BOOT(Themes); |
| |
65 PIDGIN_PERL_BOOT(Utils); |
| |
66 PIDGIN_PERL_BOOT(Xfer); |