Carregando VDS
[Começando com Windows 8 e Windows Server 2012, a interface COM do Serviço de Disco Virtual é substituída pela API de Gerenciamento de Armazenamento do Windows.]
Para carregar e inicializar o VDS
Liberar interfaces não nulas.
Chame a função CoCreateInstance, CoCreateInstanceEx ou CoGetClassObject para obter um ponteiro para o objeto carregador de serviço.
CLSCTX_DISABLE_AAA não pode ser especificado nesta chamada. Se CoInitializeSecurity for chamado, EOAC_DISABLE_AAA não poderá ser especificado no parâmetro dwCapabilities .
Chame o método IVdsServiceLoader::LoadService para carregar o VDS.
Passar NULL como o primeiro parâmetro carrega e inicializa o VDS no host local.
Chame o método IVdsService::WaitForServiceReady para aguardar a conclusão da inicialização do VDS.
O exemplo de código a seguir inicializa o serviço que retorna um ponteiro para o objeto de serviço.
#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);
}
}
}