X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=src%2Fstream.h;h=578b1403ba8e3a68edd2dfb3ddec7c9b23ce32a7;hb=53fe9495a46d16106fa91cfa589e312e882428dd;hp=25c052e072fc968dae7d2c5d39dc55259d5d6aa8;hpb=062bbb9e7322c8e3f5162f86fc2f93bfc587b830;p=rodin%2Fchimara.git diff --git a/src/stream.h b/src/stream.h index 25c052e..578b140 100644 --- a/src/stream.h +++ b/src/stream.h @@ -21,7 +21,7 @@ enum StreamType struct glk_stream_struct { /*< private >*/ - glui32 rock; + glui32 magic, rock; /* Pointer to the list node in the global stream list that contains this stream */ GList* stream_list; @@ -45,6 +45,6 @@ struct glk_stream_struct gchar *filename; /* Displayable filename in UTF-8 for error handling */ }; -strid_t window_stream_new(winid_t window); -void stream_close_common(strid_t str, stream_result_t *result); +G_GNUC_INTERNAL strid_t window_stream_new(winid_t window); +G_GNUC_INTERNAL void stream_close_common(strid_t str, stream_result_t *result); #endif