|  |  |  | Anjuta Developers Reference Manual |  | 
|---|---|---|---|---|
#include <libanjuta/interfaces/ianjuta-stream.h> #define IANJUTA_STREAM_ERROR IAnjutaStream; IAnjutaStreamIface; GQuark ianjuta_stream_error_quark (void); void ianjuta_stream_open (IAnjutaStream *obj, FILE *stream, GError **err);
typedef struct {
	GTypeInterface g_iface;
	
	void (*open) (IAnjutaStream *obj, FILE* stream, GError **err);
} IAnjutaStreamIface;
void ianjuta_stream_open (IAnjutaStream *obj, FILE *stream, GError **err);
The implementor opens the given stream.
| obj: | Self | 
| stream: | Stream to open from. | 
| err: | Error propagation and reporting |