Scroll to navigation

NtSetEaFile(3w) Wine API NtSetEaFile(3w)

NAME

NtSetEaFile (NTDLL.@)

SYNOPSIS

NTSTATUS NtSetEaFile
(
HANDLE hFile,
PIO_STATUS_BLOCK iosb,
PVOID buffer,
ULONG length
)
 

DESCRIPTION

Update extended attributes for NTFS files.
 

PARAMS

hFile [In] File handle, must be opened with FILE_READ_EA access.
iosb [Out] Receives information about the operation on return.
buffer [In] Buffer with EA information.
length [In] Length of buffer.
 

RETURNS

Success: 0. Attributes are updated
Failure: An NTSTATUS error code describing the error.
 

IMPLEMENTATION

Declared in "winternl.h".
Implemented in "dlls/ntdll/file.c".
Debug channel "ntdll".
Oct 2012 Wine API