FORCEINLINE LUID RtlConvertUlongToLuid()

in phnt/include/ntrtl.h [5110:5120]


FORCEINLINE LUID RtlConvertUlongToLuid(
    _In_ ULONG Ulong
    )
{
    LUID tempLuid;

    tempLuid.LowPart = Ulong;
    tempLuid.HighPart = 0;

    return tempLuid;
}