ListBox2
Definition
-- @/=[C]:-1
function ListBox2(...)
Callers
@/lua/common/extensions/ui/imgui_gen_luaintf.lua
end
function M.ListBox2(string_label, int_current_item, functionPtr_items_getter, void_data, int_items_count, int_height_in_items)
if int_height_in_items == nil then int_height_in_items = -1 end
if void_data == nil then log("E", "", "Parameter 'void_data' of function 'ListBox2' cannot be nil, as the c type is 'void *'") ; return end
return imgui.ListBox2(string_label, int_current_item, functionPtr_items_getter, void_data, int_items_count, int_height_in_items)
end