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
478 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: puid.inl
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //
  8. //
  9. //-----------------------------------------------------------------------------
  10. inline
  11. PUID::PUID()
  12. {
  13. m_pid = pidNone;
  14. m_pidParent = pidNone;
  15. }
  16. inline
  17. PUID::PUID(
  18. ParserId pid,
  19. ParserId pidParent)
  20. {
  21. m_pid = pid;
  22. m_pidParent = pidParent;
  23. }