2023-12-04 14:17:13 +01:00
|
|
|
namespace Ryujinx.Horizon.Psc
|
2023-10-14 04:13:15 +02:00
|
|
|
{
|
|
|
|
class PscMain : IService
|
|
|
|
{
|
|
|
|
public static void Main(ServiceTable serviceTable)
|
|
|
|
{
|
|
|
|
PscIpcServer ipcServer = new();
|
|
|
|
|
|
|
|
ipcServer.Initialize();
|
|
|
|
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
|
|
|
|
ipcServer.ServiceRequests();
|
|
|
|
ipcServer.Shutdown();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|