X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=src%2Fstream.h;h=25c052e072fc968dae7d2c5d39dc55259d5d6aa8;hb=3c678195610789166e1133575789f25da8f1a291;hp=b5a1e6092edf7bed4c74eea92bbe2163cf09396c;hpb=49eca40060b04105343874714fa67976b9430def;p=rodin%2Fchimara.git diff --git a/src/stream.h b/src/stream.h index b5a1e60..25c052e 100644 --- a/src/stream.h +++ b/src/stream.h @@ -12,8 +12,15 @@ enum StreamType STREAM_TYPE_FILE }; +/** + * glk_stream_struct: + * + * This is an opaque structure (see + * Opaque Structures and should not be accessed directly. + */ struct glk_stream_struct { + /*< private >*/ glui32 rock; /* Pointer to the list node in the global stream list that contains this stream */ @@ -22,7 +29,7 @@ struct glk_stream_struct glui32 file_mode; glui32 read_count; glui32 write_count; - enum StreamType stream_type; + enum StreamType type; /* Specific to window stream: the window this stream is connected to */ winid_t window; /* For memory and file streams */