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". https://source.winehq.org/source/include/winternl.h

Implemented in "dlls/ntdll/sec.c". https://source.winehq.org/source/dlls/ntdll/sec.c

Debug channel "ntdll".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated May 2024.