MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / GetPrototype

Method GetPrototype

source/script_gui.cpp:709–715  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

707}
708
709Object *GuiControlType::GetPrototype(GuiControls aType)
710{
711 ASSERT(aType <= _countof(sPrototypes));
712 if (aType == GUI_CONTROL_TAB2 || aType == GUI_CONTROL_TAB3)
713 aType = GUI_CONTROL_TAB; // Just make them all Gui.Tab.
714 return sPrototypes[aType];
715}
716
717ResultType GuiControlType::Invoke(IObject_Invoke_PARAMS_DECL)
718{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected