diff options
Diffstat (limited to 'apps/plugins/lua/rocklua.c')
| -rw-r--r-- | apps/plugins/lua/rocklua.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/lua/rocklua.c b/apps/plugins/lua/rocklua.c index eec6ee5..0d0b1f6 100644 --- a/apps/plugins/lua/rocklua.c +++ b/apps/plugins/lua/rocklua.c @@ -26,7 +26,7 @@ #include "rocklib.h" #include "rocklib_img.h" #include "luadir.h" - +#include "rocklib_events.h" static const luaL_Reg lualibs[] = { @@ -40,6 +40,7 @@ static const luaL_Reg lualibs[] = { {LUA_OSLIBNAME, luaopen_os}, {LUA_ROCKLIBNAME, luaopen_rock}, {LUA_ROCKLIBNAME, luaopen_rock_img}, + {LUA_ROCKEVENTSNAME, luaopen_rockevents}, {LUA_DIRLIBNAME, luaopen_luadir}, {NULL, NULL} }; |