CheckboxFlags2
Definition
-- @/=[C]:-1
function CheckboxFlags2(...)
Callers
@/lua/common/extensions/ui/imgui_gen_luaintf.lua
end
function M.CheckboxFlags2(string_label, int_flags, int_flags_value)
if string_label == nil then log("E", "", "Parameter 'string_label' of function 'CheckboxFlags2' cannot be nil, as the c type is 'const char *'") ; return end
if int_flags == nil then log("E", "", "Parameter 'int_flags' of function 'CheckboxFlags2' cannot be nil, as the c type is 'unsigned int *'") ; return end
return imgui.CheckboxFlags2(string_label, int_flags, int_flags_value)
end