rpcsx/rpcs3/Gui/MemoryStringSearcher.h
2015-12-04 23:37:37 +03:00

20 lines
299 B
C++

#pragma once
#include <wx/listctrl.h>
class MemoryStringSearcher : public wxDialog
{
wxTextCtrl* t_addr;
wxBoxSizer* s_panel;
wxButton* b_search;
public:
bool exit;
MemoryStringSearcher(wxWindow* parent);
~MemoryStringSearcher()
{
exit = true;
}
void Search(wxCommandEvent& event);
};