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.

35 lines
978 B

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