| 9503 | } |
| 9504 | |
| 9505 | bool ImGui::ListBox(const char* label, int* current_item, const char* const* items, int items_count, int height_items) |
| 9506 | { |
| 9507 | const bool value_changed = ListBox(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_items); |
| 9508 | return value_changed; |
| 9509 | } |
| 9510 | |
| 9511 | bool ImGui::ListBox(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count, int height_in_items) |
| 9512 | { |