move OPT_QUIT into the lua registry
[apps/madmutt.git] / lib-lua / lib-lua.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2007 Pierre Habouzit
18  */
19
20 #ifndef MUTT_LIB_LUA_LIB_LUA_H
21 #define MUTT_LIB_LUA_LIB_LUA_H
22
23 #ifdef HAVE_CONFIG_H
24 # include "../config.h"
25 #endif
26
27 #include "lua-token.h"
28
29 /* possible arguments to set_quadoption() */
30 typedef enum quadopt_t {
31   M_NO,
32   M_YES,
33   M_ASKNO,
34   M_ASKYES
35 } quadopt_t;
36
37 void mlua_initialize(void);
38 void mlua_shutdown(void);
39
40 int mlua_dofile(const char *filename);
41 int mlua_wrap(void (*errfun)(const char *fmt, ...), int status);
42
43 const char *mlua_reggets(enum lua_token tk);
44 quadopt_t mlua_reggetq(enum lua_token tk);
45
46 void mlua_regsets(enum lua_token tk, const char *s);
47 void mlua_regsetq(enum lua_token tk, quadopt_t q);
48
49 #endif