Windows2003-3790/sdktools/trace/traceview/providerformatinfo.h
2020-09-30 16:53:55 +02:00

33 lines
958 B
C++

//////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2002 Microsoft Corporation. All rights reserved.
// Copyright (c) 2002 OSR Open Systems Resources, Inc.
//
// ProviderFormatInfo.h : interface of the CProviderFormatInfo class
//////////////////////////////////////////////////////////////////////////////
#pragma once
// CProviderFormatInfo dialog
class CProviderFormatInfo : public CDialog
{
DECLARE_DYNAMIC(CProviderFormatInfo)
public:
CProviderFormatInfo(CWnd* pParent, CTraceSession *pTraceSession); // standard constructor
virtual ~CProviderFormatInfo();
// Dialog Data
enum { IDD = IDD_PROVIDER_FORMAT_INFORMATION_DIALOG };
CTraceSession *m_pTraceSession;
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedTmfBrowseButton();
afx_msg void OnBnClickedOk();
};