* ts: Migrate service to Horizon project This PR migrate the `ts` service (stored in `ptm`) to the Horizon project: - It stubs all known IPCs. - IpcServer consts are checked by RE. Closes #6480 * Fix args
18 lines
357 B
C#
18 lines
357 B
C#
namespace Ryujinx.Horizon.Ptm
|
|
{
|
|
class TsMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
TsIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|