NAME

NtQueryVolumeInformationFile  (NTDLL.@)

SYNOPSIS

 NTSTATUS NtQueryVolumeInformationFile
 (
  HANDLE               handle,
  PIO_STATUS_BLOCK     io,
  PVOID                buffer,
  ULONG                length,
  FS_INFORMATION_CLASS info_class
 )

DESCRIPTION

Get volume information for an open file handle.

PARAMS

handle [In] Handle returned from ZwOpenFile or ZwCreateFile.
io [Out] Receives information about the operation on return.
buffer [Out] Destination for volume information.
length [In] Size of FsInformation.
info_class [In] Type of volume information to set.

RETURNS

Success: 0. io and buffer are updated.

Failure: An NTSTATUS error code describing the error.

IMPLEMENTATION

Defined in "winioctl.h".

Implemented in "dlls/ntdll/file.c". source.winehq.org/source/dlls/ntdll/file.c

Debug channel "ntdll".


Copyright © 2005 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Aug 2005.