Adapt inotify_nop to API changes
This commit is contained in:
parent
c027122c5f
commit
52c57f5d61
@ -18,19 +18,12 @@
|
||||
|
||||
#include "autoreload.h"
|
||||
|
||||
void arl_cleanup(arl_t *arl)
|
||||
void arl_init(arl_t *arl)
|
||||
{
|
||||
(void) arl;
|
||||
}
|
||||
|
||||
bool arl_handle(arl_t *arl, const char *filepath)
|
||||
{
|
||||
(void) arl;
|
||||
(void) filepath;
|
||||
return false;
|
||||
}
|
||||
|
||||
void arl_init(arl_t *arl)
|
||||
void arl_cleanup(arl_t *arl)
|
||||
{
|
||||
(void) arl;
|
||||
}
|
||||
@ -41,3 +34,9 @@ void arl_setup(arl_t *arl, const char *filepath)
|
||||
(void) filepath;
|
||||
}
|
||||
|
||||
bool arl_handle(arl_t *arl)
|
||||
{
|
||||
(void) arl;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user