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

Method Base

source/script_com.cpp:1457–1466  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1455
1456
1457Object *ComObject::Base()
1458{
1459 if (mVarType & VT_ARRAY)
1460 return Object::sComArrayPrototype;
1461 if (mVarType & VT_BYREF)
1462 return Object::sComRefPrototype;
1463 if (mVarType == VT_DISPATCH && mUnknown)
1464 return Object::sComObjectPrototype;
1465 return Object::sComValuePrototype;
1466}
1467
1468
1469ResultType ComEnum::Next(Var *aOutput, Var *aOutputType)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected