mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 13:50:46 +01:00
Improved loader core. Implemented *_thread wrappers. Minor fixes. Temporary disabled ELF Compiler & DisAsm frame.
13 lines
243 B
C++
13 lines
243 B
C++
#pragma once
|
|
#include "Gui/FrameBase.h"
|
|
#include <wx/checklst.h>
|
|
|
|
class LLEModulesManagerFrame : public FrameBase
|
|
{
|
|
wxCheckListBox *m_check_list;
|
|
|
|
public:
|
|
LLEModulesManagerFrame(wxWindow *parent);
|
|
void Refresh();
|
|
void UpdateSelection();
|
|
}; |