// ntdddisk.h
// CTL_CODE(0x0007, 0x019, METHOD_BUFFERED, FILE_READ_ACCESS | FILE_WRITE_ACCESS)
#define IOCTL_DISK_COPY_DATA 0x0007C064
View the official Windows Driver Kit DDI reference
No description available.
This IOCTL_DISK_COPY_DATA IOCTL is used to copy data from one area of the disk to another.
The buffer at Irp->AssociatedIrp.SystemBuffer contains the DISK_COPY_DATA_PARAMETERS data. Parameters.DeviceIoControl.InputBufferLength in the I/O stack location of the IRP indicates the size, in bytes, of the buffer.
Parameters.DeviceIoControl.InputBufferLength in the I/O stack location of the IRP indicates the size, in bytes, of the buffer.
None.
None.
The Status field is set to STATUS_SUCCESS if the operation is successful.