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.

72 lines
1.5 KiB

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Abstract:
  4. @doc
  5. @module ConnDlg.h | Header file for the main dialog
  6. @end
  7. Author:
  8. Adi Oltean [aoltean] 07/22/1999
  9. Revision History:
  10. Name Date Comments
  11. aoltean 07/22/1999 Created
  12. aoltean 08/05/1999 Splitting wizard functionality in a base class
  13. --*/
  14. #if !defined(__VSS_TEST_CONN_H__)
  15. #define __VSS_TEST_CONN_H__
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif // _MSC_VER > 1000
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CConnectDlg dialog
  21. class CConnectDlg : public CVssTestGenericDlg
  22. {
  23. // Construction
  24. public:
  25. CConnectDlg(CWnd* pParent = NULL); // standard constructor
  26. ~CConnectDlg();
  27. // Dialog Data
  28. //{{AFX_DATA(CConnectDlg)
  29. enum { IDD = IDD_CONNECT };
  30. CString m_strMachineName;
  31. //}}AFX_DATA
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CConnectDlg)
  34. protected:
  35. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  36. //}}AFX_VIRTUAL
  37. protected:
  38. BOOL m_bRemote;
  39. HICON m_hIcon;
  40. // Generated message map functions
  41. //{{AFX_MSG(CConnectDlg)
  42. virtual BOOL OnInitDialog();
  43. afx_msg void OnNext();
  44. afx_msg void OnLocal();
  45. afx_msg void OnRemote();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(__VSS_TEST_CONN_H__)