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.

39 lines
1.1 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. // Copyright (c) 2002 Microsoft Corporation. All rights reserved.
  3. // Copyright (c) 2002 OSR Open Systems Resources, Inc.
  4. //
  5. // CProviderFormatSelectionDlg.h : CProviderFormatSelectionDlg class interface
  6. //////////////////////////////////////////////////////////////////////////////
  7. #pragma once
  8. #include "afxwin.h"
  9. // CProviderFormatSelectionDlg dialog
  10. class CProviderFormatSelectionDlg : public CDialog
  11. {
  12. DECLARE_DYNAMIC(CProviderFormatSelectionDlg)
  13. public:
  14. CProviderFormatSelectionDlg(CWnd* pParent, CTraceSession *pTraceSession);
  15. virtual ~CProviderFormatSelectionDlg();
  16. BOOL OnInitDialog();
  17. // Dialog Data
  18. enum { IDD = IDD_PROVIDER_FORMAT_SELECTION_DIALOG };
  19. protected:
  20. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  21. DECLARE_MESSAGE_MAP()
  22. public:
  23. afx_msg void OnBnClickedOk();
  24. afx_msg void OnBnClickedPdbSelectRadio();
  25. afx_msg void OnBnClickedTmfSelectRadio();
  26. CEdit m_pdbFileName;
  27. CTraceSession *m_pTraceSession;
  28. afx_msg void OnBnClickedPdbBrowseButton();
  29. };