rpcsx/rpcs3/Gui/MemoryStringSearcher.h

19 lines
274 B
C
Raw Normal View History

2014-12-24 20:39:57 -08:00
#pragma once
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
};