Caricamento di VDS
[A partire da Windows 8 e Windows Server 2012, l'interfaccia COM del servizio disco virtuale viene sostituita dall'API gestione archiviazione di Windows.
Per caricare e inizializzare VDS
Rilasciare interfacce non Null.
Chiamare la funzione CoCreateInstance, CoCreateInstanceEx o CoGetClassObject per ottenere un puntatore all'oggetto del caricatore del servizio.
CLSCTX_DISABLE_AAA non può essere specificato in questa chiamata. Se viene chiamato CoInitializeSecurity , non è possibile specificare EOAC_DISABLE_AAA nel parametro dwCapabilities .
Chiamare il metodo IVdsServiceLoader::LoadService per caricare VDS.
Passando NULL come primo parametro carica e inizializza VDS nell'host locale.
Chiamare il metodo IVdsService::WaitForServiceReady per attendere il completamento dell'inizializzazione VDS.
Nell'esempio di codice seguente viene inizializzato il servizio che restituisce un puntatore all'oggetto servizio.
#include "initguid.h"
#include "vds.h"
#include <stdio.h>
#pragma comment( lib, "ole32.lib" )
//
// Simple macro to release non-null interfaces.
//
#define _SafeRelease(x) {if (NULL != x) { x->Release(); x = NULL; } }
void __cdecl main(void)
{
HRESULT hResult;
IVdsService *pService = NULL;
IVdsServiceLoader *pLoader = NULL;
// For this, you first get a pointer to the VDS Loader
// Launch the VDS service.
//
hResult = CoInitialize(NULL);
if (SUCCEEDED(hResult))
{
hResult = CoCreateInstance(CLSID_VdsLoader,
NULL,
CLSCTX_LOCAL_SERVER,
IID_IVdsServiceLoader,
(void **) &pLoader);
//
// And then load VDS on the local computer.
//
if (SUCCEEDED(hResult))
{
hResult = pLoader->LoadService(NULL, &pService);
}
//
// You're done with the Loader interface at this point.
//
_SafeRelease(pLoader);
if (SUCCEEDED(hResult))
{
hResult = pService->WaitForServiceReady();
if (SUCCEEDED(hResult))
{
//
// You obtained an interface to the service: pService.
// This interface can now be used to query for providers
// and perform other operations.
//
printf("VDS Service Loaded");
}
}
else
{
printf("VDS Service failed hr=%x\n",hResult);
}
}
}