Skip to content

Latest commit

 

History

History
109 lines (87 loc) · 3.02 KB

ni-winioctl-fsctl_wait_for_repair.md

File metadata and controls

109 lines (87 loc) · 3.02 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist f1_keywords dev_langs topic_type api_type api_location api_name
NI:winioctl.FSCTL_WAIT_FOR_REPAIR
FSCTL_WAIT_FOR_REPAIR
Returns when the specified repairs are completed.
FSCTL_WAIT_FOR_REPAIR
FSCTL_WAIT_FOR_REPAIR control
FSCTL_WAIT_FOR_REPAIR control code [Files]
fs.fsctl_wait_for_repair
winioctl/FSCTL_WAIT_FOR_REPAIR
fs\fsctl_wait_for_repair.htm
fs
593ca2f0-1455-4b46-925a-61ad07f8fb5c
12/05/2018
FSCTL_WAIT_FOR_REPAIR, FSCTL_WAIT_FOR_REPAIR control, FSCTL_WAIT_FOR_REPAIR control code [Files], fs.fsctl_wait_for_repair, winioctl/FSCTL_WAIT_FOR_REPAIR
winioctl.h
Windows.h
Windows
Windows Vista [desktop apps only]
Windows Server 2008 [desktop apps only]
Windows
FSCTL_WAIT_FOR_REPAIR
winioctl/FSCTL_WAIT_FOR_REPAIR
c++
APIRef
kbSyntax
HeaderDef
WinIoCtl.h
FSCTL_WAIT_FOR_REPAIR

FSCTL_WAIT_FOR_REPAIR IOCTL

-description

Returns when the specified repairs are completed.

To perform this operation, call the DeviceIoControl function with the following parameters.

BOOL DeviceIoControl(
  (HANDLE) hDevice,             // handle to device
  FSCTL_WAIT_FOR_REPAIR,        // dwIoControlCode
  (PUSHORT) lpInBuffer,         // input buffer
  (DWORD) nInBufferSize,        // size of input buffer
  NULL,                         // lpOutBuffer
  0,                            // nOutBufferSize
  (LPDWORD) lpBytesReturned,    // number of bytes returned
  (LPOVERLAPPED) lpOverlapped   // OVERLAPPED structure
);

-ioctlparameters

-input-buffer

-input-buffer-length

-output-buffer

-output-buffer-length

-in-out-buffer

-inout-buffer-length

-status-block

Irp->IoStatus.Status is set to STATUS_SUCCESS if the request is successful.

Otherwise, Status to the appropriate error condition as a NTSTATUS code.

For more information, see NTSTATUS Values.

-remarks

In Windows 8 and Windows Server 2012, this code is supported by the following technologies.

Technology Supported
Server Message Block (SMB) 3.0 protocol No
SMB 3.0 Transparent Failover (TFO) No
SMB 3.0 with Scale-out File Shares (SO) No
Cluster Shared Volume File System (CsvFS) Yes
Resilient File System (ReFS) No

-see-also