aboutsummaryrefslogtreecommitdiffstats
path: root/autoreload_nop.c
diff options
context:
space:
mode:
Diffstat (limited to 'autoreload_nop.c')
-rw-r--r--autoreload_nop.c32
1 files changed, 22 insertions, 10 deletions
diff --git a/autoreload_nop.c b/autoreload_nop.c
index 19641f8..41dbf47 100644
--- a/autoreload_nop.c
+++ b/autoreload_nop.c
@@ -18,14 +18,26 @@
#include "autoreload.h"
-void arl_cleanup(void) { }
-
-void arl_handle(void) { }
-
-void arl_init(void) { }
-
-void arl_setup(void) { }
-
-void arl_setup_dir(void) { }
-
+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;
+}
+
+void arl_setup(arl_t *arl, const char *filepath)
+{
+ (void) arl;
+ (void) filepath;
+}