This commit is contained in:
Axel Kittenberger 2010-11-26 17:01:18 +00:00
parent c80d59cdfa
commit b077d2e713
1 changed files with 10 additions and 1 deletions

View File

@ -23,12 +23,21 @@
#include "lsyncd.h"
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
static const luaL_reg lfseventslib[] = {
{NULL, NULL}
};
/**
* registers fsevents functions.
*/
extern void
register_fsevents(lua_State *L) {
// TODO
lua_pushstring(L, "fsevents");
luaL_register(L, "fsevents", lfseventslib);
}
/**