Adjustments in Makefile.am
[rodin/chimara.git] / libchimara / fileref.h
index cfbdcca034b46396c9eb3bd119548a0c9ed8464f..c2d8f4666b2124e94f860804a8f96dac3e39a982 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <gtk/gtk.h>
 #include "glk.h"
+#include "gi_dispa.h"
 
 /**
  * glk_fileref_struct:
@@ -14,6 +15,7 @@ struct glk_fileref_struct
 {
        /*< private >*/
        glui32 magic, rock;
+       gidispatch_rock_t disprock;
        /* Pointer to the list node in the global fileref list that contains this
        fileref */
        GList* fileref_list;
@@ -25,4 +27,5 @@ struct glk_fileref_struct
        glui32 usage;
 };
 
+G_GNUC_INTERNAL frefid_t fileref_new(gchar *filename, glui32 rock, glui32 usage, glui32 orig_filemode);
 #endif