Top |
RygelUpdatableObjectRygelUpdatableObject — This interface should be implemented by 'updatable' objects - ones that allow modifying their own metadata in some persistent storage. |
typedef struct _RygelUpdatableObject RygelUpdatableObject;
This interface should be implemented by 'updatable' objects - ones that allow modifying their own metadata in some persistent storage.
struct RygelUpdatableObjectIface { GTypeInterface parent_iface; void (*commit) (RygelUpdatableObject* self, GAsyncReadyCallback _callback_, gpointer _user_data_); void (*commit_finish) (RygelUpdatableObject* self, GAsyncResult* _res_, GError** error); };
Interface for creating RygelUpdatableObject implementations.