RtlConvertLongToLuid routine
The RtlConvertLongToLuid routine converts a long integer to a locally unique identifier (LUID), which is used by the system to represent a security privilege.
Syntax
LUID RtlConvertLongToLuid( _In_ LONG Long );
Parameters
- Long [in]
-
Specifies the long integer to convert.
Return value
RtlConvertLongToLuid returns the converted LUID.
Remarks
RtlConvertLongToLuid is used to convert a system-defined privilege value to the locally unique identifier (LUID) used by the system to represent that privilege. Drivers typically pass a LUID to SeSinglePrivilegeCheck, which is usually called by network transport drivers.
Requirements
|
Target platform |
|
|---|---|
|
Version |
Available starting with Windows 2000. |
|
Header |
|
|
IRQL |
Any level |
See also