Source code of Windows XP (NT5)
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.

48 lines
1.2 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2000 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // ClusOCMApp.inl
  7. //
  8. // Description:
  9. // This file contains the definition of the inline functions of the
  10. // ClusOCMApp class.
  11. //
  12. // Header File:
  13. // ClusOCMApp.h
  14. //
  15. // Maintained By:
  16. // Vij Vasu (Vvasu) 03-MAR-2000
  17. //
  18. //////////////////////////////////////////////////////////////////////////////
  19. /////////////////////////////////////////////////////////////////////////////
  20. //++
  21. //
  22. // inline
  23. // eClusterInstallState
  24. // CClusOCMApp::CisSetClusterInstallState
  25. //
  26. // Description:
  27. // Set the current cluster installation state.
  28. //
  29. // Arguments:
  30. // cisNewStateIn
  31. // The new installation state.
  32. //
  33. // Return Value:
  34. // The previous installation state.
  35. //
  36. //--
  37. /////////////////////////////////////////////////////////////////////////////
  38. inline
  39. eClusterInstallState
  40. CClusOCMApp::CisStoreClusterInstallState( eClusterInstallState cisNewStateIn )
  41. {
  42. eClusterInstallState cisOldState = m_cisCurrentInstallState;
  43. m_cisCurrentInstallState = cisNewStateIn;
  44. return cisOldState;
  45. } //*** CClusOCMApp::CisSetClusterInstallState()