NeoMutt
2025-12-11-911-gd8d604
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
module_data.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_LUA_MODULE_DATA_H
24
#define MUTT_LUA_MODULE_DATA_H
25
26
#include <lua.h>
27
34
struct
LuaModuleData
35
{
36
struct
Notify
*
notify
;
37
lua_State *
lua_state
;
38
};
39
40
#endif
/* MUTT_LUA_MODULE_DATA_H */
LuaModuleData
Lua private Module data.
Definition
module_data.h:35
LuaModuleData::lua_state
lua_State * lua_state
Lua State.
Definition
module_data.h:37
LuaModuleData::notify
struct Notify * notify
Notifications.
Definition
module_data.h:36
Notify
Notification API.
Definition
notify.c:53