Registriert seit: 8. Feb 2005
51 Beiträge
Delphi 2009 Professional
|
AW: Übersetzung von CreateVirtualDisk
24. Okt 2010, 10:53
Ja hab ich aber das müsste eigentlich so hinhauen.
Habe auch schon die Vermutung gehabt das vielleicht irgendwo ein const oder var fehlt.
Quelle
Code:
class VirtualDisk : public CHandle
{
public:
DWORD CreateFixed(PCWSTR path,
ULONGLONG size,
VIRTUAL_DISK_ACCESS_MASK accessMask,
__in_opt PCWSTR source,
__in_opt PSECURITY_DESCRIPTOR securityDescriptor,
__in_opt OVERLAPPED* overlapped)
{
ASSERT(0 == m_h);
ASSERT(0 != path);
ASSERT(0 == size % 512);
VIRTUAL_STORAGE_TYPE storageType =
{
VIRTUAL_STORAGE_TYPE_DEVICE_VHD,
VIRTUAL_STORAGE_TYPE_VENDOR_MICROSOFT
};
CREATE_VIRTUAL_DISK_PARAMETERS parameters =
{
CREATE_VIRTUAL_DISK_VERSION_1
};
parameters.Version1.MaximumSize = size;
parameters.Version1.BlockSizeInBytes = CREATE_VIRTUAL_DISK_PARAMETERS_DEFAULT_BLOCK_SIZE;
parameters.Version1.SectorSizeInBytes = CREATE_VIRTUAL_DISK_PARAMETERS_DEFAULT_SECTOR_SIZE;
parameters.Version1.SourcePath = source;
return ::CreateVirtualDisk(&storageType,
path,
accessMask,
securityDescriptor,
CREATE_VIRTUAL_DISK_FLAG_FULL_PHYSICAL_ALLOCATION,
0, // no provider-specific flags
¶meters,
overlapped,
&m_h);
}
|
|
Zitat
|