REPAIR_COPIES_OUTPUT structure (winioctl.h)

Contains output of a repair copies operation returned from the FSCTL_REPAIR_COPIES control code.

Syntax

typedef struct _REPAIR_COPIES_OUTPUT {
  DWORD         Size;
  DWORD         Status;
  LARGE_INTEGER ResumeFileOffset;
} REPAIR_COPIES_OUTPUT, *PREPAIR_COPIES_OUTPUT;

Members

Size

Set to sizeof(REPAIR_COPIES_OUTPUT).

Status

Indicates 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.

ResumeFileOffset

If 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.

Requirements

Requirement Value
Minimum supported client Windows 8 [desktop apps only]
Minimum supported server Windows Server 2012 [desktop apps only]
Header winioctl.h (include Windows.h)