Definition
-- @/=[C]:-1
function OpenPopup1(...)
Callers
@/lua/common/extensions/ui/imgui_custom_luaintf.lua
function M.OpenPopup(string_str_id, ImGuiPopupFlags_popup_flags)
return M.OpenPopup1(string_str_id, ImGuiPopupFlags_popup_flags)
end
@/lua/common/extensions/ui/imgui_gen_luaintf.lua
function M.EndPopup() imgui.EndPopup() end
function M.OpenPopup1(string_str_id, ImGuiPopupFlags_popup_flags)
if ImGuiPopupFlags_popup_flags == nil then ImGuiPopupFlags_popup_flags = 0 end
if string_str_id == nil then log("E", "", "Parameter 'string_str_id' of function 'OpenPopup1' cannot be nil, as the c type is 'const char *'") ; return end
imgui.OpenPopup1(string_str_id, ImGuiPopupFlags_popup_flags)
end