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.

37 lines
789 B

  1. #if !defined(AFX_CONFDLG_H)
  2. #define AFX_CONFDLG_H
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. #include "rend.h"
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CConfDlg dialog
  9. class CConfDlg : public CDialog
  10. {
  11. // Construction
  12. public:
  13. CConfDlg(CWnd* pParent = NULL);
  14. enum { IDD = IDD_CONFDLG };
  15. BSTR m_bstrDestAddress;
  16. ITDirectory * m_pDirectory;
  17. protected:
  18. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  19. //}}AFX_VIRTUAL
  20. // Implementation
  21. protected:
  22. void PopulateConferences();
  23. void ListObjects( ITDirectory * );
  24. BOOL CConfDlg::OnInitDialog();
  25. virtual void OnOK();
  26. afx_msg void OnDestroy();
  27. DECLARE_MESSAGE_MAP()
  28. };
  29. #endif