// ntdddisk.h
typedef struct _DISK_GROW_PARTITION {
ULONG PartitionNumber;
LARGE_INTEGER BytesToGrow;
} DISK_GROW_PARTITION, *PDISK_GROW_PARTITION;
View the official Windows Driver Kit DDI reference// winioctl.h
typedef struct _DISK_GROW_PARTITION {
DWORD PartitionNumber;
LARGE_INTEGER BytesToGrow;
} DISK_GROW_PARTITION, *PDISK_GROW_PARTITION;
View the official Win32 API referenceNo description available.
The DISK_GROW_PARTITION structure is used in conjunction with the IOCTL_DISK_GROW_PARTITION request to enlarge a partition.
PartitionNumberSpecifies a number identifying the partition to be enlarged.
BytesToGrowIndicates the number of bytes that the partition should be extended by. Note that this value is not the new size of the partition.
Contains information used to increase the size of a partition.This structure is used by the IOCTL_DISK_GROW_PARTITION control code.
PartitionNumberThe identifier of the partition to be enlarged.
BytesToGrowThe number of bytes by which the partition is to be enlarged (positive value) or reduced (negative value). Note that this value is not the new size of the partition.