1 2 3 4 5 6 7 8 9 10 11 12 13 14
namespace Ryujinx.Horizon.LogManager { class LmMain : IService { public static void Main() { LmIpcServer ipcServer = new LmIpcServer(); ipcServer.Initialize(); ipcServer.ServiceRequests(); ipcServer.Shutdown(); } } }