diff plugins/perl/common/Gaim.xs @ 12882:e1603fd610fa

[gaim-migrate @ 15234] I give you perl /cmd support. I only tested this a little bit but it seemed to work for me, let me know if anything breaks. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Sun, 15 Jan 2006 07:56:58 +0000
parents 455610a80747
children 60b863ecd89b
line wrap: on
line diff
--- a/plugins/perl/common/Gaim.xs	Sun Jan 15 07:43:09 2006 +0000
+++ b/plugins/perl/common/Gaim.xs	Sun Jan 15 07:56:58 2006 +0000
@@ -8,7 +8,7 @@
 GAIM_PERL_BOOT_PROTO(Buddy__Icon);
 GAIM_PERL_BOOT_PROTO(BuddyList);
 GAIM_PERL_BOOT_PROTO(Cipher);
-GAIM_PERL_BOOT_PROTO(Cmds);
+GAIM_PERL_BOOT_PROTO(Cmd);
 GAIM_PERL_BOOT_PROTO(Connection);
 GAIM_PERL_BOOT_PROTO(Conversation);
 GAIM_PERL_BOOT_PROTO(Xfer);
@@ -33,7 +33,6 @@
 GAIM_PERL_BOOT_PROTO(Util);
 GAIM_PERL_BOOT_PROTO(XMLNode);
 
-
 MODULE = Gaim  PACKAGE = Gaim  PREFIX = gaim_
 PROTOTYPES: ENABLE
 
@@ -41,11 +40,11 @@
 
 BOOT:
 	GAIM_PERL_BOOT(Account);
-	GAIM_PERL_BOOT(Account__Option); 
+	GAIM_PERL_BOOT(Account__Option);
 	GAIM_PERL_BOOT(Buddy__Icon);
 	GAIM_PERL_BOOT(BuddyList);
 	GAIM_PERL_BOOT(Cipher);
-	GAIM_PERL_BOOT(Cmds);
+	GAIM_PERL_BOOT(Cmd);
 	GAIM_PERL_BOOT(Connection);
 	GAIM_PERL_BOOT(Conversation);
 	GAIM_PERL_BOOT(Xfer);
@@ -54,7 +53,7 @@
 	GAIM_PERL_BOOT(Network);
 	GAIM_PERL_BOOT(Notify);
 	GAIM_PERL_BOOT(Plugin);
-	GAIM_PERL_BOOT(PluginPref); 
+	GAIM_PERL_BOOT(PluginPref);
 	GAIM_PERL_BOOT(Pounce);
 	GAIM_PERL_BOOT(Prefs);
 	GAIM_PERL_BOOT(Privacy);
@@ -68,8 +67,7 @@
 	GAIM_PERL_BOOT(Status);
 	GAIM_PERL_BOOT(Stringref);
 	GAIM_PERL_BOOT(Util);
-	GAIM_PERL_BOOT(XMLNode); 
-
+	GAIM_PERL_BOOT(XMLNode);
 
 void
 timeout_add(plugin, seconds, callback, data = 0)
@@ -143,4 +141,3 @@
 deinit()
 CODE:
 	gaim_perl_timeout_clear();
-