mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-13 08:36:28 +00:00
20 lines
461 B
C
20 lines
461 B
C
/*
|
||
| inotify.h from Lsyncd -- the Live (Mirror) Syncing Demon
|
||
|
|
||
| Event interface for Lsyncd to Linux´ inotify.
|
||
|
|
||
| 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
|