2022-10-10 20:06:19 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
struct dirmonitor_internal* init_dirmonitor() { return NULL; }
|
|
|
|
void deinit_dirmonitor(struct dirmonitor_internal* monitor) { }
|
|
|
|
int get_changes_dirmonitor(struct dirmonitor_internal* monitor, char* buffer, size_t len) { return -1; }
|
|
|
|
int translate_changes_dirmonitor(struct dirmonitor_internal* monitor, char* buffer, int size, int (*callback)(int, const char*, void*), void* data) { return -1; }
|
|
|
|
int add_dirmonitor(struct dirmonitor_internal* monitor, const char* path) { return -1; }
|
|
|
|
void remove_dirmonitor(struct dirmonitor_internal* monitor, int fd) { }
|
2023-01-09 01:45:37 +01:00
|
|
|
int get_mode_dirmonitor() { return 1; }
|
2022-10-10 20:06:19 +02:00
|
|
|
|