You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
414 B

6 years ago
  1. using Microsoft.Win32.Security.Win32Structs;
  2. namespace Microsoft.Win32.Security
  3. {
  4. /// <summary>
  5. /// Summary description for Luid.
  6. /// </summary>
  7. public class Luid
  8. {
  9. private readonly LUID _luid;
  10. public Luid(LUID luid)
  11. {
  12. _luid = luid;
  13. }
  14. internal LUID GetNativeLUID()
  15. {
  16. return _luid;
  17. }
  18. }
  19. }