Wrap up version 1.3.3.
[minidlna.git] / monitor.h
blobe74a42503a991dc63c258c3ee528c38bd1ea8738
1 int monitor_insert_file(const char *name, const char *path);
2 int monitor_insert_directory(int fd, char *name, const char * path);
3 int monitor_remove_file(const char * path);
4 int monitor_remove_tree(const char * path);
5 int monitor_remove_directory(int fd, const char * path);
7 #if defined(HAVE_INOTIFY) || defined(HAVE_KQUEUE)
8 #define HAVE_WATCH 1
9 int monitor_add_watch(int, const char *);
10 int monitor_remove_watch(int, const char *);
11 void monitor_start();
12 void monitor_stop();
13 #endif