This topic has not yet been rated - Rate this topic

REPAIR_COPIES_OUTPUT structure

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

Minimum supported client

Windows 8 [desktop apps only]

Minimum supported server

Windows Server 2012 [desktop apps only]

Header

WinIoCtl.h (include Windows.h)

 

 

Send comments about this topic to Microsoft

Build date: 4/16/2013

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.