Leaked source code of windows server 2003
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.

30 lines
545 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: puid.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //
  8. //
  9. //-----------------------------------------------------------------------------
  10. #pragma once
  11. struct LTAPIENTRY PUID
  12. {
  13. PUID();
  14. PUID(ParserId pid, ParserId pidParent);
  15. CLString GetName(void) const;
  16. ParserId m_pid;
  17. ParserId m_pidParent;
  18. };
  19. #if !defined(_DEBUG) || defined(IMPLEMENT)
  20. #include "puid.inl"
  21. #endif