summaryrefslogtreecommitdiffabout
path: root/Trayer.h
Unidiff
Diffstat (limited to 'Trayer.h') (more/less context) (ignore whitespace changes)
-rw-r--r--Trayer.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/Trayer.h b/Trayer.h
new file mode 100644
index 0000000..ff170e1
--- a/dev/null
+++ b/Trayer.h
@@ -0,0 +1,44 @@
1// Trayer.h : header file
2//
3
4/////////////////////////////////////////////////////////////////////////////
5// CTrayer window
6
7class CKLogDlg;
8class CTrayer : public CWnd
9{
10// Construction
11public:
12 CKLogDlg * m_Daddy;
13 CTrayer(CKLogDlg* daddy);
14 int m_inMenu;
15 CTrayer();
16
17// Attributes
18public:
19
20// Operations
21public:
22
23// Overrides
24 // ClassWizard generated virtual function overrides
25 //{{AFX_VIRTUAL(CTrayer)
26 //}}AFX_VIRTUAL
27
28// Implementation
29public:
30 virtual ~CTrayer();
31
32 // Generated message map functions
33protected:
34 //{{AFX_MSG(CTrayer)
35 afx_msg LRESULT OnTray(WPARAM,LPARAM);
36 afx_msg void OnTrayAboutklog();
37 afx_msg void OnTrayExit();
38 afx_msg void OnTrayHelp();
39 afx_msg void OnTrayShowklogwindow();
40 //}}AFX_MSG
41 DECLARE_MESSAGE_MAP()
42};
43
44/////////////////////////////////////////////////////////////////////////////