#ifndef LUA_SCRIPT_PRIVATE_H
#include "dlua-script.h"
#include "lualib.h"
#include "lauxlib.h"
#if !defined(LUA_VERSION_NUM)
#endif
#endif
/* consistency helpers */
struct dlua_script {
lua_State *L;
const char *filename;
int ref;
};
enum dlua_table_value_type {
};
struct dlua_table_values {
const char *name;
union {
const char *s;
ptrdiff_t i;
double d;
bool b;
} v;
};
/* Get dlua_script from lua_State */
/* register 'dovecot' global */
/* push 'dovecot' global on top of stack */
/* assign values to table on idx */
#endif