The LookupPrivilegeName function retrieves the name corresponding to the privilege represented on a specific system by a specified locally unique identifier (LUID).
BOOL LookupPrivilegeName(
LPCTSTR lpSystemName,
// address of string specifying the system
PLUID lpLuid, // address of locally unique identifier
LPTSTR lpName, // address of string specifying the privilege
LPDWORD cbName // address of size of string for displayable name
);
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
For the current release of Windows NT, only the privileges specified in the Defined Privileges section of WINNT.H are supported by this function.
Windows NT: Requires version 3.1 or later.
Windows: Unsupported.
Windows CE: Unsupported.
Header: Declared in winbase.h.
Import Library: Use advapi32.lib.
Unicode: Implemented as Unicode and ANSI versions on Windows NT.
Access Control Overview, Access Control Functions, LookupPrivilegeDisplayName, LookupPrivilegeValue