mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-15 23:48:31 +00:00
Make parameters to igCombo match signature.
This commit is contained in:
parent
2a82d19eff
commit
73abfc21b4
@ -785,7 +785,7 @@ extern "C" {
|
||||
pub fn igRadioButton(label: *const c_char, v: *mut c_int,
|
||||
v_button: c_int) -> bool;
|
||||
pub fn igCombo(label: *const c_char, current_item: *mut c_int,
|
||||
items: *const *const c_char, items_count: c_int, height_in_items: c_int) -> bool;
|
||||
items: *mut *const c_char, items_count: c_int, height_in_items: c_int) -> bool;
|
||||
pub fn igCombo2(label: *const c_char, current_item: *mut c_int,
|
||||
items_separated_by_zeros: *const c_char, height_in_items: c_int) -> bool;
|
||||
pub fn igCombo3(label: *const c_char, current_item: *mut c_int,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user