blob: 38738c9b85f946182394ba07febf1c57016f683b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef MAIL_STORAGE_LUA_H
#define MAIL_STORAGE_LUA_H 1
#include "dlua-script.h"
#include "dlua-script-private.h"
struct mail_user;
struct mailbox;
struct mail;
struct dlua_script;
void dlua_register_mail_storage(struct dlua_script *script);
void dlua_push_mail_user(lua_State *L, struct mail_user *user);
void dlua_push_mailbox(lua_State *L, struct mailbox *box);
void dlua_push_mail(lua_State *L, struct mail *mail);
#endif
|