This repository has been archived on 2025-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
2025-05-05 23:22:43 +08:00

14 lines
192 B
C++

#include "RemoteServer.h"
class RemoteServerApp : public wxApp
{
public:
bool OnInit() override;
};
bool RemoteServerApp::OnInit()
{
return true;
}
wxIMPLEMENT_APP(RemoteServerApp);