forked from Mirror/Ryujinx
17 lines
No EOL
366 B
C#
17 lines
No EOL
366 B
C#
namespace Ryujinx.Horizon.LogManager
|
|
{
|
|
class LmMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
LmIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
} |