summaryrefslogtreecommitdiff
path: root/src/T2OpenningWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/T2OpenningWindow.h')
-rw-r--r--src/T2OpenningWindow.h21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/T2OpenningWindow.h b/src/T2OpenningWindow.h
index 7695cbc..8e2a7aa 100644
--- a/src/T2OpenningWindow.h
+++ b/src/T2OpenningWindow.h
@@ -1,25 +1,32 @@
#pragma once
#include "common.h"
+#include "resource.h"
class Bitmap;
class T2OpenningWindow : public CFrameWnd {
+public:
+ T2OpenningWindow();
DECLARE_DYNCREATE(T2OpenningWindow)
- DECLARE_MESSAGE_MAP()
public:
- T2OpenningWindow();
virtual ~T2OpenningWindow();
void ShowOpenningWindow();
-protected:
- void OnPaint();
- void OnLButtonDown(UINT nFlags, CPoint point);
- BOOL OnEraseBkgnd(CDC *pDC);
-
Bitmap *mBitmap;
CPalette mPalette;
int _CC;
int _D0;
CString mWndClass;
+
+ //{{AFX_VIRTUAL(T2OpenningWindow)
+ //}}AFX_VIRTUAL
+
+protected:
+ //{{AFX_MSG(T2OpenningWindow)
+ afx_msg void OnPaint();
+ afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
+ afx_msg BOOL OnEraseBkgnd(CDC *pDC);
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
};