NAME

NtQueryDirectoryObject  (NTDLL.@)

SYNOPSIS

 NTSTATUS NtQueryDirectoryObject
 (
  IN HANDLE               DirObjHandle,
  OUT POBJDIR_INFORMATION DirObjInformation,
  IN ULONG                BufferLength,
  IN BOOLEAN              GetNextIndex,
  IN BOOLEAN              IgnoreInputIndex,
  IN OUT PULONG           ObjectIndex,
  OUT PULONG DataWritten  OPTIONAL
 )

DESCRIPTION

Read information from a namespace directory.

PARAMS

DirObjHandle [In] Object handle.
DirObjInformation [Out] Buffer to hold the data read.
BufferLength [In] Size of the buffer in bytes.
GetNextIndex [In] Set ObjectIndex to TRUE=next object, FALSE=last object.
IgnoreInputIndex [In] Start reading at index TRUE=0, FALSE=ObjectIndex.
ObjectIndex [In/Out] 0 based index into the directory, see IgnoreInputIndex and GetNextIndex.
DataWritten [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 © 2005 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Aug 2005.