File: muscript_priv.h

package info (click to toggle)
mailutils 1%3A3.15-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 36,672 kB
  • sloc: ansic: 181,539; sh: 110,509; yacc: 7,458; cpp: 3,834; makefile: 3,152; lex: 1,972; python: 1,617; exp: 1,562; awk: 152; lisp: 132; 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;