Updated dummy method signature to match prototypes.
This commit is contained in:
parent
b58ba3fede
commit
bdd87298d6
|
@ -2,7 +2,7 @@
|
|||
|
||||
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 get_changes_dirmonitor(struct dirmonitor_internal* monitor, char* buffer, int 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) { }
|
||||
|
|
Loading…
Reference in New Issue