RtlConvertLuidToLonglong - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H

FORCEINLINE
LONGLONG
NTAPI_INLINE
RtlConvertLuidToLonglong(
    _In_ LUID Luid
    )
{
    LONGLONG tempLuid;

    tempLuid = Luid.LowPart;
    tempLuid += ((LONGLONG)(Luid.HighPart) << 32);

    return tempLuid;
}

#endif

View code on GitHub

No description available.