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
35 lines
978 B
//////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (c) 2002 Microsoft Corporation. All rights reserved.
|
|
// Copyright (c) 2002 OSR Open Systems Resources, Inc.
|
|
//
|
|
// FormatSourceSelectDlg.h : CFormatSourceSelectDlg header
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
|
|
// CFormatSourceSelectDlg dialog
|
|
|
|
class CFormatSourceSelectDlg : public CDialog
|
|
{
|
|
DECLARE_DYNAMIC(CFormatSourceSelectDlg)
|
|
|
|
public:
|
|
CFormatSourceSelectDlg(CWnd* pParent, CTraceSession *pTraceSession);
|
|
virtual ~CFormatSourceSelectDlg();
|
|
|
|
BOOL OnInitDialog();
|
|
void OnOK();
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_FORMAT_INFO_SELECT };
|
|
|
|
CTraceSession *m_pTraceSession;
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
afx_msg void OnBnClickedTmfSelectRadio();
|
|
afx_msg void OnBnClickedTmfSearchRadio();
|
|
};
|