NAME

NtQueryDirectoryObject  (NTDLL.@)

SYNOPSIS

 NTSTATUS NtQueryDirectoryObject
 (
  IN HANDLE                        DirectoryHandle,
  OUT PDIRECTORY_BASIC_INFORMATION Buffer,
  IN ULONG                         BufferLength,
  IN BOOLEAN                       ReturnSingleEntry,
  IN BOOLEAN                       RestartScan,
  IN OUT PULONG                    Context,
  OUT PULONG ReturnLength          OPTIONAL
 )

DESCRIPTION

Read information from a namespace directory.

PARAMS

DirectoryHandle [In] Handle to a directory object.
Buffer [Out] Buffer to hold the read data.
BufferLength [In] Size of the buffer in bytes.
ReturnSingleEntry [In] If TRUE, return a single entry, if FALSE, return as many as fit in the buffer.
RestartScan [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.
ReturnLength [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 "dlls/ntdll/om.c". source.winehq.org/source/dlls/ntdll/om.c

Debug channel "ntdll".


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