Scroll to navigation

RtlAdjustPrivilege(3w) Wine API RtlAdjustPrivilege(3w)

NAME

RtlAdjustPrivilege (NTDLL.@)

SYNOPSIS

NTSTATUS RtlAdjustPrivilege
(
ULONG Privilege,
BOOLEAN Enable,
BOOLEAN CurrentThread,
PBOOLEAN Enabled
)
 

DESCRIPTION

Enables or disables a privilege from the calling thread or process.
 

PARAMS

Privilege [In] Privilege index to change.
Enable [In] If TRUE, then enable the privilege otherwise disable.
CurrentThread [In] If TRUE, then enable in calling thread, otherwise process.
Enabled [Out] Whether privilege was previously enabled or disabled.
 

RETURNS

Success: STATUS_SUCCESS.
Failure: NTSTATUS code.
 

SEE ALSO

NtAdjustPrivilegesToken, NtOpenThreadToken, NtOpenProcessToken.
 

IMPLEMENTATION

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