This topic has not yet been rated - Rate this topic

2.3.5 LUID

The LUID structure is 64-bit value guaranteed to be unique only on the system on which it was generated. The uniqueness of a locally unique identifier (LUID) is guaranteed only until the system is restarted.

typedef struct _LUID {
  DWORD LowPart;
  LONG HighPart;
} LUID, 
 *PLUID;

LowPart: The low-order bits of the structure.

HighPart: The high-order bits of the structure.

 
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.