mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
20 lines
298 B
C++
20 lines
298 B
C++
#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);
|
|
};
|