2021-07-14 10:11:46 +02:00
|
|
|
#ifndef DIRMONITOR_H
|
|
|
|
#define DIRMONITOR_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "dmon.h"
|
|
|
|
|
|
|
|
void dirmonitor_init();
|
|
|
|
void dirmonitor_deinit();
|
2021-07-15 09:56:49 +02:00
|
|
|
void dirmonitor_watch_callback(dmon_watch_id watch_id, dmon_action action, const char *rootdir,
|
|
|
|
const char *filepath, const char *oldfilepath, void *user);
|
2021-07-14 10:11:46 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|