rpcsx/rpcs3/Gui/MemoryStringSearcher.h

20 lines
298 B
C
Raw Normal View History

2014-12-25 05:39:57 +01:00
#pragma once
#include <wx/listctrl.h>
class MemoryStringSearcher : public wxFrame
{
wxTextCtrl* t_addr;
wxBoxSizer* s_panel;
wxButton* b_search;
public:
bool exit;
MemoryStringSearcher(wxWindow* parent);
~MemoryStringSearcher()
{
exit = true;
}
void Search(wxCommandEvent& event);
2014-12-25 05:39:57 +01:00
};