Function
GgitStashCallback
Declaration
gint
(* GgitStashCallback) (
gsize index,
const gchar* message,
GgitOId* stash_oid,
gpointer user_data
)
Description [src]
When iterating over all the stashed states, callback that will be issued per entry. See ggit_repository_stash_foreach().
Parameters
index |
gsize |
The position within the stash list. 0 points to the most recent stashed state. |
|
message |
const gchar* |
The stash message. |
|
The data is owned by the caller of the function. | |
The value is a NUL terminated UTF-8 string. | |
stash_oid |
GgitOId |
The commit oid of the stashed state. |
|
The data is owned by the caller of the function. | |
user_data |
gpointer |
User-suplied data. |
|
The argument can be NULL . | |
The data is owned by the caller of the function. |