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