~ppsspp/ppsspp/ppsspp_1.3.0

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
#pragma once


class CDynaViewDlg
{
private:
	static HINSTANCE		m_hInstance;
	static HWND				m_hParent;
	static int				m_iBlock;
	static HWND				m_hDlg;

	static BOOL CALLBACK DlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);

public:
	// constructor
	static void Init(HINSTANCE _hInstance, HWND _hParent);

	// destructor
	static void DeInit(void);
	//
	// --- tools ---
	//
	static HWND GetDlgHandle()
	{
		return m_hDlg;
	}

	// show
	static void Show(bool _bShow);
	static void Size();

	static void View(int num);
	static void ViewAddr(u32 addr);
};