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.

55 lines
1.4 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // ClusItem.inl
  7. //
  8. // Abstract:
  9. // Inline function implementations for the CClusterItem class.
  10. //
  11. // Author:
  12. // David Potter (davidp) May 9, 1996
  13. //
  14. // Revision History:
  15. //
  16. // Notes:
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. #ifndef _CLUSITEM_INL_
  20. #define _CLUSITEM_INL_
  21. /////////////////////////////////////////////////////////////////////////////
  22. // Include Files
  23. /////////////////////////////////////////////////////////////////////////////
  24. #ifndef _CLUSITEM_H_
  25. #include "ClusItem.h" // for CClusterItem
  26. #endif
  27. #ifndef _CLUSDOC_H_
  28. #include "ClusDoc.h" // for CClusterDoc
  29. #endif
  30. /////////////////////////////////////////////////////////////////////////////
  31. // Inline Function Definitions
  32. /////////////////////////////////////////////////////////////////////////////
  33. inline HCLUSTER CClusterItem::Hcluster(void) const
  34. {
  35. ASSERT_VALID(Pdoc());
  36. return Pdoc()->Hcluster();
  37. } //*** CClusterItem::Hcluster()
  38. inline HKEY CClusterItem::HkeyCluster(void) const
  39. {
  40. ASSERT_VALID(Pdoc());
  41. return Pdoc()->HkeyCluster();
  42. } //*** CClusterItem::HkeyCluster()
  43. /////////////////////////////////////////////////////////////////////////////
  44. #endif // _CLUSITEM_INL_