Collapse All
Virtuozzo Virtualization SDK C API Reference
ContentsIndex
PreviousUpNext
PrlVmCfg_GetDefaultHddSize Function
PHT_VM_CONFIGURATION

The PrlVmCfg_GetDefaultHddSize function returns the default hard disk size for to the specified OS type and version.

Syntax
PRL_RESULT PrlVmCfg_GetDefaultHddSize(
    PRL_UINT32 guestOsVersion, 
    PRL_UINT32_PTR pnHddSize
);
File

PrlApiVm.h

Parameters

guestOsVersion
Operating system version. See PrlOses.h for version definitions.
pnHddSize
[out] A pointer to a variable that receives the hard disk size, in megabytes.

Returns

PRL_RESULT. Possible values: 

PRL_ERR_INVALID_ARG - invalid handle or null pointer was passed. 

PRL_ERR_SUCCESS - function completed successfully. 

Remarks

When creating a virtual machine using a default configuration, the default hard disk is defined for every supported operating system type and version. The default HDD sizes can be retrieved using this function. The OS types are defined in the PrlOses.h file as macros. Look for the macros that are prefixed with PVS_GUEST_TYPE_ (e.g. PVS_GUEST_TYPE_MACOS). The OS versions can be found in the same file. The names of the macros are prefixed with PVS_GUEST_VER_ (e.g. PVS_GUEST_VER_MACOS_LEOPARD).

Links
Copyright ©2016-2017 Parallels International GmbH. All rights reserved.