![]() | ![]() | ![]() | Anjuta Developers Reference Manual | ![]() |
---|
ianjuta-file —
#define IANJUTA_FILE_ERROR struct IAnjutaFile; struct IAnjutaFileIface; GQuark ianjuta_file_error_quark (void); void ianjuta_file_open (IAnjutaFile *obj, const gchar *uri, GError **err); gchar* ianjuta_file_get_uri (IAnjutaFile *obj, GError **err);
struct IAnjutaFileIface { GTypeInterface g_iface; gchar* (*get_uri) (IAnjutaFile *obj, GError **err); void (*open) (IAnjutaFile *obj, const gchar *uri, GError **err); };
void ianjuta_file_open (IAnjutaFile *obj, const gchar *uri, GError **err);
The implementor opens the given URI.
obj : | Self |
uri : | URI to open. |
err : | Error propagation and reporting |
gchar* ianjuta_file_get_uri (IAnjutaFile *obj, GError **err);
Returns the URI that was opened with ianjuta_file_open().
obj : | Self |
err : | Error propagation and reporting |
Returns : | The last URI opened. |
<< ianjuta-document-manager | ianjuta-file-loader >> |