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.
|
|
///////////////////////////////////////////////////////////////////////////// // // Copyright (c) 1996 Microsoft Corporation // // Module Name: // ClusItem.inl // // Abstract: // Inline function implementations for the CClusterItem class. // // Author: // David Potter (davidp) May 9, 1996 // // Revision History: // // Notes: // /////////////////////////////////////////////////////////////////////////////
#ifndef _CLUSITEM_INL_ #define _CLUSITEM_INL_
///////////////////////////////////////////////////////////////////////////// // Include Files /////////////////////////////////////////////////////////////////////////////
#ifndef _CLUSITEM_H_ #include "ClusItem.h" // for CClusterItem #endif
#ifndef _CLUSDOC_H_ #include "ClusDoc.h" // for CClusterDoc #endif
///////////////////////////////////////////////////////////////////////////// // Inline Function Definitions /////////////////////////////////////////////////////////////////////////////
inline HCLUSTER CClusterItem::Hcluster(void) const { ASSERT_VALID(Pdoc()); return Pdoc()->Hcluster();
} //*** CClusterItem::Hcluster()
inline HKEY CClusterItem::HkeyCluster(void) const { ASSERT_VALID(Pdoc()); return Pdoc()->HkeyCluster();
} //*** CClusterItem::HkeyCluster()
/////////////////////////////////////////////////////////////////////////////
#endif // _CLUSITEM_INL_
|