lsyncd/core/inotify.h

25 lines
466 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
| 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