C:\Src\ExamDiff\Test\_test1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// comm.h : dialup communications header file
//
#include <errno.h>
/////////////////////////////////////////////////////////////////////////////
// Symbolic Constants
#define INIT_RAS_ENTRIES 16
/////////////////////////////////////////////////////////////////////////////
// CDOESettings dialog
class CDOESettings : public CDialog
{
// Construction
public:
CDOESettings(CWnd* pParent = NULL); // standard constructor
// Dialog Data
unsigned long nEntrySize;
unsigned long nEntries;
BOOL bPassword;
RASENTRYNAME *RasEntries;
RASDIALPARAMS RasDialParams;
//{{AFX_DATA(CDOESettings)
enum { IDD = IDD_DIAL_ON_ERRORS };
CListBox m_RASList;
int m_nErrReporting;
CString m_csMsgTo; // comment
BOOL m_bReportDone;
int m_nReDial;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides 2
//{{AFX_VIRTUAL(CDOESettings)
protected:
public:
void EnableCommonSettings(BOOL bEnable);
void EnableNetSendSettings(BOOL bEnable);
void EnablePagerSettings(BOOL bEnable);
void EnableMailSettings(BOOL bEnable);
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CDOESettings)
virtual BOOL OnInitDialog();
afx_msg void OnTestMsg();
afx_msg void OnRASSelChange();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CSimpleDOE dialog
class CSimpleDOE : public CDialog
{
// Construction
public:
CSimpleDOE(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CSimpleDOE)
enum { IDD = IDD_SIMPLE_ERR_SETTINGS };
int m_nEnable;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSimpleDOE)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CSimpleDOE)
// NOTE: the ClassWizard will add member functions here
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
C:\Src\ExamDiff\Test\_test2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/////////////////////////////////////////////////////////////////////////////
// CDOESettings dialogs
class CDOESettings : public CDialog
{
// Construction
public:
CDOESettings(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CDOESettings)
enum { IDD = IDD_DIAL_ON_ERRORS };
CListBox m_RASList; // commnet
int m_nErrReporting;
CString test m_csMsgTo;
CString m_csMailName;
CString m_csMailPassword;
CString m_csName;
CString m_csPassword;
CString m_csPhone;
BOOL m_bReportDone;
CString m_csSendTo;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDOESettings)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
1protected0:
// Generated message map functions
//{{AFX_MSG(CDOESettings)
virtual BOOL OnInitDialog();
afx_msg void OnTestMsg();
afx_msg void OnRadio1();
afx_msg void OnRadio2();
afx_msg void OnRadio3();
afx_msg void OnRadio4();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
public:
void EnableCommonSettings(BOOL bEnable);
void EnableNetSendSettings(BOOL bEnable);
void EnablePagerSettings(BOOL bEnable);
void EnableMailSettings(BOOL bEnable);
};
/////////////////////////////////////////////////////////////////////////////
// CSimpleDOE dialog
class CSimpleDOE : public CDialog
{
// Construction
public:
CSimpleDOE(CWnd* pParent = NULL); // sub-standard constructor
// Dialog Data
//{{AFX_DATA(CSimpleDOE)
enum { IDD = IDD_SIMPLE_ERR_SETTINGS };
int m_nEnable;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSimpleDOE)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CSimpleDOE)
// NOTE: the ClassWizard will add member functions here
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
Number of differences: 12
Added(6,11)
Deleted(14,5)
Changed(20)
Changed in changed(4)
Ignored