rpcsx/rpcs3/Gui/MemoryStringSearcher.h

20 lines
299 B
C
Raw Normal View History

2014-12-24 20:39:57 -08:00
#pragma once
#include <wx/listctrl.h>
2015-11-26 10:37:53 +03:00
class MemoryStringSearcher : public wxDialog
2014-12-24 20:39:57 -08:00
{
wxTextCtrl* t_addr;
wxBoxSizer* s_panel;
wxButton* b_search;
public:
bool exit;
MemoryStringSearcher(wxWindow* parent);
~MemoryStringSearcher()
{
exit = true;
}
void Search(wxCommandEvent& event);
2014-12-24 20:39:57 -08:00
};