Adapt inotify_nop to API changes
This commit is contained in:
parent
c027122c5f
commit
52c57f5d61
|
@ -18,26 +18,25 @@
|
||||||
|
|
||||||
#include "autoreload.h"
|
#include "autoreload.h"
|
||||||
|
|
||||||
void arl_cleanup(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_init(arl_t *arl)
|
||||||
{
|
{
|
||||||
(void) arl;
|
(void) arl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void arl_cleanup(arl_t *arl)
|
||||||
|
{
|
||||||
|
(void) arl;
|
||||||
|
}
|
||||||
|
|
||||||
void arl_setup(arl_t *arl, const char *filepath)
|
void arl_setup(arl_t *arl, const char *filepath)
|
||||||
{
|
{
|
||||||
(void) arl;
|
(void) arl;
|
||||||
(void) filepath;
|
(void) filepath;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool arl_handle(arl_t *arl)
|
||||||
|
{
|
||||||
|
(void) arl;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue