From e8435e3e2bd5641e07a7b3af1cc535cf4e72fb4a Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Tue, 13 Sep 2016 22:28:58 +1000 Subject: [PATCH] * src/source.h : export f2b_source_{start,stop}() --- src/source.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/source.h b/src/source.h index 2766f68..64b8040 100644 --- a/src/source.h +++ b/src/source.h @@ -26,7 +26,9 @@ typedef struct f2b_source_t { f2b_source_t * f2b_source_create (f2b_config_section_t *config, const char *init, void (*errcb)(const char *)); void f2b_source_destroy (f2b_source_t *s); +bool f2b_source_start (f2b_source_t *s); bool f2b_source_next (f2b_source_t *s, char *buf, size_t bufsize, bool reset); +bool f2b_source_stop (f2b_source_t *s); const char * f2b_source_error (f2b_source_t *s); #endif /* F2B_SOURCE_H_ */