summaryrefslogtreecommitdiffstats
path: root/sesman/chansrv/chansrv.h
diff options
context:
space:
mode:
Diffstat (limited to 'sesman/chansrv/chansrv.h')
-rw-r--r--sesman/chansrv/chansrv.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/sesman/chansrv/chansrv.h b/sesman/chansrv/chansrv.h
new file mode 100644
index 00000000..327f6228
--- /dev/null
+++ b/sesman/chansrv/chansrv.h
@@ -0,0 +1,18 @@
+
+#if !defined(CHANSRV_H)
+#define CHANSRV_H
+
+#include "arch.h"
+#include "parse.h"
+
+struct chan_item
+{
+ int id;
+ int flags;
+ char name[16];
+};
+
+int APP_CC
+send_channel_data(int chan_id, char* data, int size);
+
+#endif