Memuat VD
[Dimulai dengan Windows 8 dan Windows Server 2012, antarmuka COM Layanan Disk Virtual digantikan oleh API Manajemen Penyimpanan Windows.]
Untuk memuat dan menginisialisasi VDS
Rilis antarmuka non-null.
Panggil fungsi CoCreateInstance, CoCreateInstanceEx, atau CoGetClassObject untuk mendapatkan pointer ke objek pemuat layanan.
CLSCTX_DISABLE_AAA tidak dapat ditentukan dalam panggilan ini. Jika CoInitializeSecurity dipanggil, EOAC_DISABLE_AAA tidak dapat ditentukan dalam parameter dwCapabilities .
Panggil metode IVdsServiceLoader::LoadService untuk memuat VDS.
Meneruskan NULL sebagai parameter pertama memuat dan menginisialisasi VDS pada host lokal.
Panggil metode IVdsService::WaitForServiceReady untuk menunggu inisialisasi VDS selesai.
Contoh kode berikut menginisialisasi layanan yang mengembalikan penunjuk ke objek layanan.
#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);
}
}
}