Scroll to navigation

NtOpenSymbolicLinkObject(3w) Wine API NtOpenSymbolicLinkObject(3w)

NAME

NtOpenSymbolicLinkObject (NTDLL.@)

SYNOPSIS

NTSTATUS NtOpenSymbolicLinkObject
(
OUT PHANDLE LinkHandle,
IN ACCESS_MASK DesiredAccess,
IN POBJECT_ATTRIBUTES ObjectAttributes
)
 

DESCRIPTION

Open a namespace symbolic link object.
 

PARAMS

LinkHandle [Out] Destination for the new symbolic link handle.
DesiredAccess [In] Desired access to the symbolic link.
ObjectAttributes [In] Structure describing the symbolic link.
 

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