From 1bbd236b547c9b9e6fe4c39717a4cbf1363f5254 Mon Sep 17 00:00:00 2001 From: ChristopherBenson <36432556+ChristopherBenson@users.noreply.github.com> Date: Fri, 17 Jan 2020 23:06:08 -0800 Subject: [PATCH] Update ni-winioctl-fsctl_get_reparse_point.md Modified white space in the "pre-formatted" text block showing the FSCTL_GET_REPARSE_POINT DeviceIoControl() call. This change restores a couple of parameters that were previously missing/invisible because they fell outside of the framing table cell's boundaries. --- .../winioctl/ni-winioctl-fsctl_get_reparse_point.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sdk-api-src/content/winioctl/ni-winioctl-fsctl_get_reparse_point.md b/sdk-api-src/content/winioctl/ni-winioctl-fsctl_get_reparse_point.md index 9fe266bb2128..9d8a9ae9d20b 100644 --- a/sdk-api-src/content/winioctl/ni-winioctl-fsctl_get_reparse_point.md +++ b/sdk-api-src/content/winioctl/ni-winioctl-fsctl_get_reparse_point.md @@ -60,7 +60,10 @@ To perform this operation, call the
BOOL DeviceIoControl( (HANDLE) hDevice, // handle to file or directory - FSCTL_GET_REPARSE_POINT, // dwIoControlCodeNULL, // lpInBuffer0, // nInBufferSize(LPVOID) lpOutBuffer, // output buffer + FSCTL_GET_REPARSE_POINT, // dwIoControlCode + NULL, // lpInBuffer + 0, // nInBufferSize + (LPVOID) lpOutBuffer, // output buffer (DWORD) nOutBufferSize, // size of output buffer (LPDWORD) lpBytesReturned, // number of bytes returned (LPOVERLAPPED) lpOverlapped // OVERLAPPED structure @@ -134,7 +137,7 @@ To perform this operation, call the Irp->IoStatus.Status is set to STATUS_SUCCESS if the request is successful. -Otherwise, Status to the appropriate error condition as a NTSTATUS code. +Otherwise, Status is set to the appropriate error condition as a NTSTATUS code. For more information, see [NTSTATUS Values](https://docs.microsoft.com/en-us/windows-hardware/drivers/kernel/ntstatus-values).