mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
- Implemented VFS manager. - Implemented MFC. - Fixed ELF Compiler. - Improved HLE Func binder.
13 lines
252 B
C++
13 lines
252 B
C++
#pragma once
|
|
|
|
class TextInputDialog : public wxDialog
|
|
{
|
|
wxTextCtrl* m_tctrl_text;
|
|
wxString m_result;
|
|
|
|
public:
|
|
TextInputDialog(wxWindow* parent, const wxString& defvalue = wxEmptyString);
|
|
void OnOk(wxCommandEvent& event);
|
|
|
|
wxString& GetResult();
|
|
}; |