blob: 91e2aa413e43420b349f3614342b7ec26ec63b35 (
plain)
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
|
#if !defined(AFX_MSDEVCALLERLISTCTRL_H__4B5EE0C1_D251_45CF_BBD1_D5003C80B238__INCLUDED_)
#define AFX_MSDEVCALLERLISTCTRL_H__4B5EE0C1_D251_45CF_BBD1_D5003C80B238__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MsDevCallerListCtrl.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// MsDevCallerListCtrl window
class MsDevCallerListCtrl : public CListCtrl
{
// Construction
public:
MsDevCallerListCtrl();
void setLineNumberSubItem( int subItemIndex );
void setFileNameSubItem( int fileNameItemIndex );
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(MsDevCallerListCtrl)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~MsDevCallerListCtrl();
// Generated message map functions
protected:
//{{AFX_MSG(MsDevCallerListCtrl)
afx_msg void OnDblclk(NMHDR* pNMHDR, LRESULT* pResult);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
int m_lineNumberSubItem;
int m_fileNameSubItem;
bool m_initialized;
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MSDEVCALLERLISTCTRL_H__4B5EE0C1_D251_45CF_BBD1_D5003C80B238__INCLUDED_)
|