mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
22 lines
No EOL
312 B
C++
22 lines
No EOL
312 B
C++
#pragma once
|
|
|
|
#include <wx/wx.h>
|
|
|
|
enum CgDisasmIds
|
|
{
|
|
id_open_file
|
|
};
|
|
|
|
class CgDisasm : public wxFrame
|
|
{
|
|
private:
|
|
wxTextCtrl* m_disasm_text;
|
|
wxTextCtrl* m_glsl_text;
|
|
DECLARE_EVENT_TABLE();
|
|
|
|
public:
|
|
CgDisasm(wxWindow* parent);
|
|
|
|
void OpenCg(wxCommandEvent& event);
|
|
virtual void OnSize(wxSizeEvent& event);
|
|
}; |