17 lines
282 B
C
17 lines
282 B
C
int
|
|
monitor_insert_file(char * name, const char * path);
|
|
|
|
int
|
|
monitor_insert_directory(int fd, char *name, const char * path);
|
|
|
|
int
|
|
monitor_remove_file(const char * path);
|
|
|
|
int
|
|
monitor_remove_directory(int fd, const char * path);
|
|
|
|
#ifdef HAVE_INOTIFY
|
|
void *
|
|
start_inotify();
|
|
#endif
|