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

Method Next

source/script_com.cpp:1469–1481  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1467
1468
1469ResultType ComEnum::Next(Var *aOutput, Var *aOutputType)
1470{
1471 VARIANT varResult = {0};
1472 if (penum->Next(1, &varResult, NULL) == S_OK)
1473 {
1474 if (aOutputType)
1475 aOutputType->Assign((__int64)varResult.vt);
1476 if (aOutput)
1477 AssignVariant(*aOutput, varResult, false);
1478 return CONDITION_TRUE;
1479 }
1480 return CONDITION_FALSE;
1481}
1482
1483
1484HRESULT ComArrayEnum::Begin(ComObject *aArrayObject, ComArrayEnum *&aEnum, int aMode)

Callers

nothing calls this directly

Calls 2

AssignVariantFunction · 0.85
AssignMethod · 0.45

Tested by

no test coverage detected