mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-03-12 01:54:24 +00:00
18 lines
359 B
C#
18 lines
359 B
C#
namespace Ryujinx.Horizon.Usb
|
|
{
|
|
class UsbMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
UsbIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|