Top | ![]() |
![]() |
![]() |
![]() |
GgitReflogEntry * | ggit_reflog_entry_ref () |
void | ggit_reflog_entry_unref () |
GgitOId * | ggit_reflog_entry_get_old_id () |
GgitOId * | ggit_reflog_entry_get_new_id () |
GgitSignature * | ggit_reflog_entry_get_committer () |
const gchar * | ggit_reflog_entry_get_message () |
GgitReflogEntry *
ggit_reflog_entry_ref (GgitReflogEntry *reflog_entry
);
Atomically increments the reference count of reflog_entry
by one.
This function is MT-safe and may be called from any thread.
void
ggit_reflog_entry_unref (GgitReflogEntry *reflog_entry
);
Atomically decrements the reference count of reflog_entry
by one.
If the reference count drops to 0, reflog_entry
is freed.
GgitOId *
ggit_reflog_entry_get_old_id (GgitReflogEntry *reflog_entry
);
Gets the old GgitOId.
GgitOId *
ggit_reflog_entry_get_new_id (GgitReflogEntry *reflog_entry
);
Gets the new GgitOId.
GgitSignature *
ggit_reflog_entry_get_committer (GgitReflogEntry *reflog_entry
);
Gets the committer as a GgitSignature.
const gchar *
ggit_reflog_entry_get_message (GgitReflogEntry *reflog_entry
);
Gets the message.