comparison libgaim/plugins/perl/perl-common.h @ 14364:338ac096e322

[gaim-migrate @ 17070] Disabled GTK+ components of the Perl plugin (we'll no longer support gtk-perl prefs frames until this is refactored into a gtkgaim plugin somehow). Fix gaim_util_fetch_url and plug some leaks. I haven't successfully tested gaim_util_fetch_url from perl yet - it doesn't seem to actually pass the retrieved text to the plugin sub correctly yet. The syntax for calling gaim_util_fetch_url() from perl is also funky and should be made more consistent to the C function. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 28 Aug 2006 20:27:03 +0000
parents 60b1bc8dbf37
children
comparison
equal deleted inserted replaced
14363:4558e71a5a34 14364:338ac096e322
29 GaimPlugin *plugin; 29 GaimPlugin *plugin;
30 char *package; 30 char *package;
31 char *load_sub; 31 char *load_sub;
32 char *unload_sub; 32 char *unload_sub;
33 char *prefs_sub; 33 char *prefs_sub;
34 #ifdef GAIM_GTKPERL
34 char *gtk_prefs_sub; 35 char *gtk_prefs_sub;
36 #endif
35 char *plugin_action_sub; 37 char *plugin_action_sub;
36 } GaimPerlScript; 38 } GaimPerlScript;
37 39
38 void gaim_perl_normalize_script_name(char *name); 40 void gaim_perl_normalize_script_name(char *name);
39 41