Implemented Unix startup code, argument parsing, and platform-dependent functions
[projects/chimara/chimara.git] / libchimara / stream.h
index 0ea398e377fc98bf561e629ac9ce4434e4527fdc..1f9f3c82596e4f45222bcca3a660bb0741108c7f 100644 (file)
@@ -4,6 +4,7 @@
 #include <gtk/gtk.h>
 #include "glk.h"
 #include "window.h"
+#include "fileref.h"
 
 enum StreamType
 {
@@ -48,5 +49,7 @@ struct glk_stream_struct
 };
 
 G_GNUC_INTERNAL strid_t window_stream_new(winid_t window);
+G_GNUC_INTERNAL strid_t file_stream_new(frefid_t fileref, glui32 fmode, glui32 rock, gboolean unicode);
 G_GNUC_INTERNAL void stream_close_common(strid_t str, stream_result_t *result);
+
 #endif