Add new resource stream unit test
[projects/chimara/chimara.git] / libchimara / stream.h
index 1e5a720b141469fa54c46b654bdaeec276af7793..7ff7618c61ef44dc78a75ebc1b60033f45c81718 100644 (file)
@@ -2,6 +2,7 @@
 #define STREAM_H
 
 #include <gtk/gtk.h>
+#include "chimara-glk-private.h"
 #include "glk.h"
 #include "gi_dispa.h"
 #include "window.h"
@@ -41,15 +42,18 @@ struct glk_stream_struct
        gchar *buffer;
        glui32 *ubuffer;
        glui32 mark;
+       glui32 endmark;
        glui32 buflen;
        gidispatch_rock_t buffer_rock;
        /* Specific to file streams */
        FILE *file_pointer;
        gboolean binary;
        gchar *filename; /* Displayable filename in UTF-8 for error handling */
+       glui32 lastop; /* 0, filemode_Write, or filemode_Read */
 
        gchar *style; /* Name of the current style */
-       gboolean hyperlink_mode; /* WHen turned on, text written to the stream will be a hyperlink */
+       gchar *glk_style; /* Name of the current glk style override */
+       gboolean hyperlink_mode; /* When turned on, text written to the stream will be a hyperlink */
 };
 
 G_GNUC_INTERNAL strid_t file_stream_new(frefid_t fileref, glui32 fmode, glui32 rock, gboolean unicode);