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.

31 lines
366 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. PUID.H
  5. History:
  6. --*/
  7. #pragma once
  8. struct LTAPIENTRY PUID
  9. {
  10. PUID();
  11. PUID(ParserId pid, ParserId pidParent);
  12. CLString GetName(void) const;
  13. ParserId m_pid;
  14. ParserId m_pidParent;
  15. };
  16. #if !defined(_DEBUG) || defined(IMPLEMENT)
  17. #include "puid.inl"
  18. #endif