#ifndef _NTRTL_H
FORCEINLINE
BOOLEAN
NTAPI_INLINE
RtlIsZeroLuid(
_In_ PLUID L1
)
{
return (L1->LowPart | L1->HighPart) == 0;
}
View code on GitHub// wdm.h
void RtlIsZeroLuid(
[in] L1
);
View the official Windows Driver Kit DDI referenceThis macro is documented in Windows Driver Kit.