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.
23 lines
420 B
23 lines
420 B
#pragma once
|
|
|
|
|
|
// CMaxTraceDlg dialog
|
|
|
|
class CMaxTraceDlg : public CDialog
|
|
{
|
|
DECLARE_DYNAMIC(CMaxTraceDlg)
|
|
|
|
public:
|
|
CMaxTraceDlg(CWnd* pParent = NULL); // standard constructor
|
|
virtual ~CMaxTraceDlg();
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_MAX_TRACE };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
LONG m_MaxTraceEntries;
|
|
};
|