-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMemoryView.h
55 lines (44 loc) · 1.01 KB
/
MemoryView.h
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
//
// ƒƒ‚ƒŠƒrƒ…[ƒNƒ‰ƒX
//
#ifndef __CMEMORYVIEW_INCLUDED__
#define __CMEMORYVIEW_INCLUDED__
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <string>
using namespace std;
#include "Wnd.h"
class CMemoryView : public CWnd
{
public:
// Constructor/Destructor
CMemoryView();
~CMemoryView();
// Override from CWnd
BOOL Create( HWND hWndParent );
void Destroy();
protected:
// Message map
WND_MESSAGE_MAP()
WNDMSG OnCreate( WNDMSGPARAM );
WNDMSG OnClose( WNDMSGPARAM );
WNDMSG OnDestroy( WNDMSGPARAM );
WNDMSG OnActivate( WNDMSGPARAM );
WNDMSG OnSize( WNDMSGPARAM );
WNDMSG OnLButtonDown( WNDMSGPARAM );
WNDMSG OnMouseWheel( WNDMSGPARAM );
WNDMSG OnChar( WNDMSGPARAM );
WNDMSG OnKeyDown( WNDMSGPARAM );
WNDMSG OnVScroll( WNDMSGPARAM );
WNDMSG OnPaint( WNDMSGPARAM );
WNDMSG OnTimer( WNDMSGPARAM );
//
void OnDraw( HDC hDC );
static LOGFONT m_logFont;
HFONT m_hFont;
INT m_StartAddress;
INT m_DispLines;
INT m_CursorX, m_CursorY;
private:
};
#endif // !__CMEMORYVIEW_INCLUDED__