table of contents
other versions
- wheezy 1.4.1-4
| NtCreateDirectoryObject(3w) | Wine API | NtCreateDirectoryObject(3w) |
NAME¶
NtCreateDirectoryObject (NTDLL.@)SYNOPSIS¶
NTSTATUS NtCreateDirectoryObject(
PHANDLE DirectoryHandle,
ACCESS_MASK DesiredAccess,
POBJECT_ATTRIBUTES ObjectAttributes
)
DESCRIPTION¶
Create 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 |