summaryrefslogtreecommitdiffstats
path: root/src/core/rawlog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/rawlog.h')
-rw-r--r--src/core/rawlog.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/rawlog.h b/src/core/rawlog.h
new file mode 100644
index 0000000..53c0d3c
--- /dev/null
+++ b/src/core/rawlog.h
@@ -0,0 +1,27 @@
+#ifndef IRSSI_CORE_RAWLOG_H
+#define IRSSI_CORE_RAWLOG_H
+
+struct _RAWLOG_REC {
+ int logging;
+ int handle;
+
+ GQueue *lines;
+};
+
+RAWLOG_REC *rawlog_create(void);
+void rawlog_destroy(RAWLOG_REC *rawlog);
+
+void rawlog_input(RAWLOG_REC *rawlog, const char *str);
+void rawlog_output(RAWLOG_REC *rawlog, const char *str);
+void rawlog_redirect(RAWLOG_REC *rawlog, const char *str);
+
+void rawlog_set_size(int lines);
+
+void rawlog_open(RAWLOG_REC *rawlog, const char *fname);
+void rawlog_close(RAWLOG_REC *rawlog);
+void rawlog_save(RAWLOG_REC *rawlog, const char *fname);
+
+void rawlog_init(void);
+void rawlog_deinit(void);
+
+#endif