mirror of
https://github.com/owntracks/recorder.git
synced 2024-11-16 02:18:27 -07:00
20 lines
395 B
C
20 lines
395 B
C
#ifndef HOOKS_H_INCLUDED
|
|
# define HOOKS_H_INCLUDED
|
|
|
|
#ifdef WITH_LUA
|
|
# include <lua.h>
|
|
|
|
|
|
struct luadata {
|
|
char *script; /* Path to Lua script in --lua-script */
|
|
lua_State *L; /* The Lua machine */
|
|
};
|
|
|
|
struct luadata *hooks_init(char *luascript);
|
|
void hooks_exit(struct luadata *, char *reason);
|
|
void hooks_hook(struct udata *ud, char *topic, JsonNode *obj);
|
|
|
|
#endif /* WITH_LUA */
|
|
|
|
#endif
|