RtlCopyLuid routine
The RtlCopyLuid routine copies a locally unique identifier (LUID) to a buffer.
Syntax
VOID RtlCopyLuid( _Out_ PLUID DestinationLuid, _In_ PLUID SourceLuid );
Parameters
- DestinationLuid [out]
-
Pointer to a caller-allocated buffer to receive a copy of the source LUID structure. The buffer must be at least sizeof(LUID).
- SourceLuid [in]
-
Pointer to the source LUID structure to be copied.
Return value
None
Remarks
RtlCopyLuid does not check whether the LUID at SourceLuid is structurally valid.
For more information about security and access control, see the documentation on these topics in the Microsoft Windows SDK.
Requirements
|
Target platform | |
|---|---|
|
Header |
|
|
Library |
|
|
DLL |
|
|
IRQL |
< DISPATCH_LEVEL |
See also