comparison plugins/perl/perl-handlers.h @ 6520:2e2593d95121

[gaim-migrate @ 7037] Added timeout handler support to perl. It may not work. Probably should, but who knows. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 20 Aug 2003 10:25:58 +0000
parents
children ed796f756237
comparison
equal deleted inserted replaced
6519:7f0fffa1077b 6520:2e2593d95121
1 #ifndef _GAIM_PERL_HANDLERS_H_
2 #define _GAIM_PERL_HANDLERS_H_
3
4 #include "plugin.h"
5
6 typedef struct
7 {
8 char *name;
9 char *args;
10 GaimPlugin *plugin;
11 int iotag;
12
13 } GaimPerlTimeoutHandler;
14
15 void gaim_perl_timeout_add(GaimPlugin *plugin, int seconds, const char *func,
16 void *args);
17 void gaim_perl_timeout_clear_for_plugin(GaimPlugin *plugin);
18 void gaim_perl_timeout_clear(void);
19
20 #endif /* _GAIM_PERL_HANDLERS_H_ */