Collegamento a un computer SDO-Enabled
Il codice seguente si collega al computer locale come computer SDO.
HRESULT hr;
CComPtr<ISdoMachine> pSdoMachine;
CLSID clsid;
hr = CLSIDFromProgID(TEXT("IAS.SdoMachine"), &clsid);
if (FAILED(hr))
{
return hr;
}
hr = CoCreateInstance(
clsid,
NULL,
CLSCTX_INPROC_SERVER,
__uuidof(ISdoMachine),
(void**)&pSdoMachine
);
if (FAILED(hr))
{
return hr;
}
//
// Pass NULL to specify local computer.
//
hr = pSdoMachine->Attach(NULL);
if (FAILED(hr))
{
return hr;
}
Il collegamento a un computer come computer SDO è il primo passaggio per amministrare il computer tramite SDO.
Per altre informazioni, vedere ISdoMachine, ISdoMachine::Attach.