// winioctl.h
typedef struct _REPAIR_COPIES_OUTPUT {
DWORD Size;
DWORD Status;
LARGE_INTEGER ResumeFileOffset;
} REPAIR_COPIES_OUTPUT, *PREPAIR_COPIES_OUTPUT;
View the official Win32 API referenceNo description available.
Contains output of a repair copies operation returned from the FSCTL_REPAIR_COPIES control code.
SizeSet to sizeof(REPAIR_COPIES_OUTPUT).
StatusIndicates the status of the repair operation. The value is a NTSTATUS value. See http://msdn.microsoft.com/en-us/library/cc704588(PROT.10).aspx for a list of NTSTATUS values.
ResumeFileOffsetIf the Status member indicates the operation was not successful, this is the file offset to use to resume repair operations, skipping the range where errors were found.