NAME

NtSetInformationFile  (NTDLL.@)

SYNOPSIS

 NTSTATUS NtSetInformationFile
 (
  HANDLE                 handle,
  PIO_STATUS_BLOCK       io,
  PVOID                  ptr,
  ULONG                  len,
  FILE_INFORMATION_CLASS class
 )

DESCRIPTION

Set information about an open file handle.

PARAMS

handle [In] Handle returned from ZwOpenFile or ZwCreateFile.
io [Out] Receives information about the operation on return.
ptr [In] Source for file information.
len [In] Size of FileInformation.
class [In] Type of file information to set.

RETURNS

Success: 0. io is updated.

Failure: An NTSTATUS error code describing the error.

IMPLEMENTATION

Defined in "winternl.h".

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

Debug channel "ntdll".


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