Skip to content

Commit

Permalink
libgit2: Other FFI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjmnt4n committed Mar 2, 2024
1 parent b98c738 commit ba42d64
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libgit2-sys/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ git_enum! {
GIT_EINDEXDIRTY = -34,
GIT_EAPPLYFAIL = -35,
GIT_EOWNER = -36,
GIT_TIMEOUT = -37,
GIT_EUNCHANGED = -38,
}
}

Expand Down Expand Up @@ -862,10 +864,11 @@ pub struct git_index_time {
pub struct git_config_entry {
pub name: *const c_char,
pub value: *const c_char,
pub backend_type: *const c_char,
pub origin_path: *const c_char,
pub include_depth: c_uint,
pub level: git_config_level_t,
pub free: Option<extern "C" fn(*mut git_config_entry)>,
pub payload: *mut c_void,
}

git_enum! {
Expand Down

0 comments on commit ba42d64

Please sign in to comment.