From 93c935a639da55c1bc4d39e616588cc0f73df1e3 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Thu, 13 Aug 2009 02:23:33 +0200 Subject: Added channels. Minor fixes - known bugs! --- channel.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 channel.h (limited to 'channel.h') diff --git a/channel.h b/channel.h new file mode 100644 index 0000000..cda0df5 --- /dev/null +++ b/channel.h @@ -0,0 +1,23 @@ +#ifndef _CHANNEL_H_ +#define _CHANNEL_H_ + +#include "regexset.h" + +struct channel_file_t { + char *path; + struct regexset_t *rs; +}; + +struct channel_t { + char *name; + int file_count; + struct channel_file_t *files; +}; + +void channel_init(); +struct channel_t *channel_add(const char *name); +int channel_set_file_count(struct channel_t *channel, int count); +int channel_set_file(struct channel_t *channel, int index, const char *path, int rs_index); +void channel_free(); + +#endif -- cgit v1.2.3