|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| advapi32.lib
| Header File
| winbase.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
LookupPrivilegeValue
The LookupPrivilegeValue function retrieves the locally unique identifier (LUID) used on a specified
system to locally represent the specified privilege name.
BOOL LookupPrivilegeValue(
LPCTSTR lpSystemName,
| // address of string specifying the system
| LPCTSTR lpName,
| // address of string specifying the privilege
| PLUID lpLuid
| // address of locally unique identifier
| );
|
|
Parameters
lpSystemName
Points to a null-terminated string specifying the name of the system on which
the privilege name is looked up. If a null string is specified, the function
attempts to find the privilege name on the local system.
lpName
Points to a null-terminated string that specifies the name of the privilege,
as defined in the WINNT.H header file. For example, this parameter could specify
the constant SE_SECURITY_NAME, or its corresponding string,
"SeSecurityPrivilege".
lpLuid
Points to a variable that receives the locally unique identifier by which the
privilege is known on the system specified by the lpSystemName parameter.
Return Values
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.
Remarks
For this release of Windows NT, only the privileges specified in the Defined
Privileges section of WINNT.H are supported by this function.
See Also
LookupPrivilegeDisplayName, LookupPrivilegeName
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|