NtSetVolumeInformationFile.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

NtSetVolumeInformationFile (NTDLL.@)

SYNOPSIS

NTSTATUS NtSetVolumeInformationFile
 (
  IN HANDLE            FileHandle,
  PIO_STATUS_BLOCK     IoStatusBlock,
  PVOID                FsInformation,
  ULONG                Length,
  FS_INFORMATION_CLASS FsInformationClass
 )

DESCRIPTION

Set volume information for an open file handle.

PARAMS

FileHandle [In] Handle returned from ZwOpenFile(3w) or ZwCreateFile(3w).

IoStatusBlock [Out] Receives information about the operation on return.

FsInformation [In] Source for volume information.

Length [In] Size of FsInformation.

FsInformationClass [In] Type of volume information to set.

RETURNS

Success: 0. IoStatusBlock is updated.

Failure: An NTSTATUS error code describing the error.

IMPLEMENTATION

Defined in "winternl.h".

Implemented in "dlls/ntdll/file.c".

Debug channel "ntdll".