Update [ci skip]
[luanode.git] / luanode_api.h
blob06d4a01ef6bceefb55f41378528a0ca2e9377b0d
1 #ifndef _LUANODE_API_H
2 #define _LUANODE_API_H
4 typedef struct LuaNodeModuleInterface {
5 int interface_version;
7 bool (*luanode_post) (const char* module_name, const char* function_name, int key, void* userdata);
8 } LuaNodeModuleInterface;
10 #endif