Scroll to navigation

NtOpenDirectoryObject(3w) Wine API NtOpenDirectoryObject(3w)

NAME

NtOpenDirectoryObject (NTDLL.@)

SYNOPSIS

NTSTATUS NtOpenDirectoryObject
(
PHANDLE DirectoryHandle,
ACCESS_MASK DesiredAccess,
POBJECT_ATTRIBUTES ObjectAttributes
)
 

DESCRIPTION

Open a namespace directory object.
 

PARAMS

DirectoryHandle [Out] Destination for the new directory handle.
DesiredAccess [In] Desired access to the directory.
ObjectAttributes [In] Structure describing the directory.
 

RETURNS

Success: ERROR_SUCCESS.
Failure: An NTSTATUS error code.
 

IMPLEMENTATION

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