Index: eloop.h |
diff --git a/eloop.h b/eloop.h |
index d699e1ecd9c97cb2d972b1964ec96696c63a79da..7a96cc9dccd6816931b146f10caa0477ac9c3492 100644 |
--- a/eloop.h |
+++ b/eloop.h |
@@ -30,7 +30,8 @@ |
#include <time.h> |
-void add_event(int fd, void (*)(void *), void *); |
+int add_event(int fd, void (*)(void *), void *); |
+int add_event_flags(int fd, int flags, void (*)(int, void *), void *); |
void delete_event(int fd); |
void add_timeout_sec(time_t, void (*)(void *), void *); |
void add_timeout_tv(const struct timeval *, void (*)(void *), void *); |