File: muscript_priv.h

package info (click to toggle)
mailutils 1%3A3.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 31,424 kB
  • ctags: 17,698
  • sloc: ansic: 165,737; sh: 77,655; yacc: 6,304; cpp: 3,827; makefile: 3,019; lex: 2,053; python: 1,652; exp: 1,272; lisp: 782; awk: 200; sed: 31
file content (14 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct mu_script_fun
{
  char *lang;
  char *suf;
  int (*script_init) (const char *, const char **, mu_script_descr_t *);
  int (*script_done) (mu_script_descr_t);
  int (*script_process) (mu_script_descr_t, mu_message_t);
  int (*script_log_enable) (mu_script_descr_t descr, const char *name,
			    const char *hdr);
};

extern struct mu_script_fun mu_script_python;
extern struct mu_script_fun mu_script_sieve;
extern struct mu_script_fun mu_script_scheme;