ppsspp/Windows/Debugger/Debugger_MemoryDlg.h
Unknown W. Brackets 97098f109a Use CommonWindows.h from Windows/ too.
Might as well.  Everything still builds fine.
2013-07-28 21:04:20 -07:00

37 lines
690 B
C++

// NOTE: Apologies for the quality of this code, this is really from pre-opensource Dolphin - that is, 2003.
#pragma once
#include "Windows/W32Util/DialogManager.h"
#include "Core/MemMap.h"
#include "Core/CPU.h"
#include "Core/Debugger/DebugInterface.h"
#include "Common/CommonWindows.h"
class CMemoryDlg : public Dialog
{
private:
DebugInterface *cpu;
static RECT slRect;
BOOL DlgProc(UINT message, WPARAM wParam, LPARAM lParam);
public:
int index; //helper
// constructor
CMemoryDlg(HINSTANCE _hInstance, HWND _hParent, DebugInterface *_cpu);
// destructor
~CMemoryDlg(void);
void Goto(u32 addr);
void Update(void);
void NotifyMapLoaded();
void Size(void);
};