Step 2a: Really check the binding between network components.
Next Step: Bind the Tcpip transport to all enumerated network adapters.
pHelpText = NULL;
hr = pNCfgComp->GetDisplayName(&pDisplayName);
hr = pNCfgComp->GetHelpText(&pHelpText);
- bChecked = TRUE; //ReactOS hack
+ bChecked = FALSE;
hr = pNCfgComp->QueryInterface(IID_PPV_ARG(INetCfgComponentBindings, &pCompBind));
if (SUCCEEDED(hr))
{
hr = pCompBind->IsBoundTo(pAdapterCfgComp);
if (hr == S_OK)
bChecked = TRUE;
- else
- bChecked = FALSE;
}
}