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.

54 lines
1.3 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2002 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // AdvancedDlg.h
  7. //
  8. // Maintained By:
  9. // Galen Barbee (GalenB) 10-APR-2002
  10. //
  11. //////////////////////////////////////////////////////////////////////////////
  12. #pragma once
  13. #include <clusudef.h>
  14. //////////////////////////////////////////////////////////////////////////////
  15. //++
  16. //
  17. // class CAdvancedDlg
  18. //
  19. // Description:
  20. // Display the advanced options dialog box.
  21. //
  22. //--
  23. //////////////////////////////////////////////////////////////////////////////
  24. class CAdvancedDlg
  25. {
  26. private:
  27. HWND m_hwnd; // Our HWND
  28. CClusCfgWizard * m_pccw; // Wizard
  29. private:
  30. CAdvancedDlg( CClusCfgWizard * pccwIn );
  31. ~CAdvancedDlg( void );
  32. static INT_PTR CALLBACK
  33. S_DlgProc( HWND hwndDlg, UINT nMsg, WPARAM wParam, LPARAM lParam );
  34. LRESULT OnInitDialog( void );
  35. LRESULT OnCommand( UINT idNotificationIn, UINT idControlIn, HWND hwndSenderIn );
  36. HRESULT HrOnOK( void );
  37. public:
  38. static HRESULT
  39. S_HrDisplayModalDialog(
  40. HWND hwndParentIn
  41. , CClusCfgWizard * pccwIn
  42. );
  43. }; //*** class CAdvancedDlg