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