lsyncd/core/inotify.h
2018-03-28 09:17:49 +02:00

22 lines
411 B
C

/*
| inotify.h from Lsyncd - Live (Mirror) Syncing Demon
|
|
|
| License: GPLv2 (see COPYING) or any later version
| Authors: Axel Kittenberger <axkibe@gmail.com>
*/
#ifndef LSYNCD_INOTIFY_H
#define LSYNCD_INOTIFY_H
#ifndef WITH_INOTIFY
# error "Do not include inotify.h when not configured to use inotify."
#endif
extern void register_inotify(lua_State *L);
extern void open_inotify(lua_State *L);
#endif