diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-07-09 20:59:16 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-07-09 20:59:16 +0100 |
commit | c920fe38a19013b99f3f74e48da9724fb053c212 (patch) | |
tree | 6bb036fd3f61b85daceb26f74378eadcdd977db1 /src/T2OpenningWindow.h | |
parent | 96a63139221587c6be9659c1e07eacd3a8e7f048 (diff) | |
download | t2win-c920fe38a19013b99f3f74e48da9724fb053c212.tar.gz t2win-c920fe38a19013b99f3f74e48da9724fb053c212.zip |
support building from VC++ IDE, add resources
Diffstat (limited to '')
-rw-r--r-- | src/T2OpenningWindow.h | 21 |
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() }; |