NtQueryDirectoryObject(3w)
NAME
NtQueryDirectoryObject (NTDLL.@)
SYNOPSIS
NTSTATUS NtQueryDirectoryObject ( HANDLE handle, PDIRECTORY_BASIC_INFORMATION buffer, ULONG size, BOOLEAN single_entry, BOOLEAN restart, PULONG context, PULONG ret_size )
DESCRIPTION
Read information from a namespace directory.
PARAMS
handle [In] Handle to a directory object.
buffer [Out] Buffer to hold the read data.
size [In] Size of the buffer in bytes.
single_entry [In] If TRUE, return a single entry, if FALSE, return as
many as fit in the buffer.
restart [In] If TRUE, start scanning from the start, if FALSE, scan
from Context.
context [In/Out] Indicates what point of the directory the scan is at.
ret_size [Out] Caller supplied storage for the number of bytes written
(or NULL).
RETURNS
Success: ERROR_SUCCESS.
Failure: An NTSTATUS error code.
IMPLEMENTATION
Defined in "winternl.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/ntdll/om.c".
- Debug channel "ntdll".