Mercurial > pidgin
view libpurple/plugins/perl/perl-common.h @ 23554:ab70eae012f5
Fixup MSN mailbox handling based on a patch from Felipe, plus various
other things that I cleaned up in the URL command handler.
Updates are now made after at least 750 seconds because Felipe found
that to be the magic value, and updating every time we receive a QNG is
totally unreliable. They aren't even received when using the HTTP
method, for example.
Opening the inbox is now always available. I'm not sure why it was
limited to just @hotmail.com and @msn.com, but I certainly haven't been
testing with either of those. I think the correct way to determine if
an inbox exists is to just use the URL command and see, but I don't
have one of those no-inbox accounts.
The initial email notification is no longer called explicitly for
@hotmail.com and @msn.com accounts. I, at least, get an initial mail
notification, but the rest of Felipe's patch negates the need to do
this, anyway.
References #5762.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Thu, 17 Jul 2008 05:25:48 +0000 |
parents | 3a41eb457605 |
children | ab5b9acebde3 |
line wrap: on
line source
#ifndef _PURPLE_PERL_COMMON_H_ #define _PURPLE_PERL_COMMON_H_ #include <glib.h> #ifdef _WIN32 #undef pipe #endif #include <XSUB.h> #include <EXTERN.h> #include <perl.h> /* XXX: perl defines it's own _ but I think it's safe to undef it */ #undef _ /* Dirty hack to prevent the win32 libc compat stuff from interfering with the Perl internal stuff */ #ifdef _WIN32 #define _WIN32DEP_H_ #endif #include "internal.h" #ifdef _WIN32 #undef _WIN32DEP_H_ #endif #include "plugin.h" #include "value.h" #define is_hvref(o) \ ((o) && SvROK(o) && SvRV(o) && (SvTYPE(SvRV(o)) == SVt_PVHV)) #define hvref(o) \ (is_hvref(o) ? (HV *)SvRV(o) : NULL); #define PURPLE_PERL_BOOT_PROTO(x) \ void boot_Purple__##x(pTHX_ CV *cv); #define PURPLE_PERL_BOOT(x) \ purple_perl_callXS(boot_Purple__##x, cv, mark) typedef struct { PurplePlugin *plugin; char *package; char *load_sub; char *unload_sub; char *prefs_sub; #ifdef PURPLE_GTKPERL char *gtk_prefs_sub; #endif char *plugin_action_sub; } PurplePerlScript; void purple_perl_normalize_script_name(char *name); SV *newSVGChar(const char *str); void purple_perl_callXS(void (*subaddr)(pTHX_ CV *cv), CV *cv, SV **mark); void purple_perl_bless_plain(const char *stash, void *object); SV *purple_perl_bless_object(void *object, const char *stash); gboolean purple_perl_is_ref_object(SV *o); void *purple_perl_ref_object(SV *o); int execute_perl(const char *function, int argc, char **args); #if 0 gboolean purple_perl_value_from_sv(PurpleValue *value, SV *sv); SV *purple_perl_sv_from_value(const PurpleValue *value); #endif void *purple_perl_data_from_sv(PurpleValue *value, SV *sv); SV *purple_perl_sv_from_vargs(const PurpleValue *value, va_list *args, void ***copy_arg); SV *purple_perl_sv_from_fun(PurplePlugin *plugin, SV *callback); #endif /* _PURPLE_PERL_COMMON_H_ */