diff options
| author | Ac_K <Acoustik666@gmail.com> | 2023-10-14 04:13:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-13 23:13:15 -0300 |
| commit | 1e06b28b22848706014b18bffcec7553cdab2b2b (patch) | |
| tree | 96c73f3b1aaacccf5b9ac5ffca31711cc5b71863 /src/Ryujinx.Horizon/Srepo/SrepoMain.cs | |
| parent | e768a54f17b390c3ac10904c7909e3bef020edbd (diff) | |
Horizon: Migrate usb and psc services (#5800)
* Horizon: Migrate Usb and Psc services
* Fix formatting
* Adresses feedback
Diffstat (limited to 'src/Ryujinx.Horizon/Srepo/SrepoMain.cs')
| -rw-r--r-- | src/Ryujinx.Horizon/Srepo/SrepoMain.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Ryujinx.Horizon/Srepo/SrepoMain.cs b/src/Ryujinx.Horizon/Srepo/SrepoMain.cs new file mode 100644 index 00000000..78d813ac --- /dev/null +++ b/src/Ryujinx.Horizon/Srepo/SrepoMain.cs @@ -0,0 +1,17 @@ +namespace Ryujinx.Horizon.Srepo +{ + class SrepoMain : IService + { + public static void Main(ServiceTable serviceTable) + { + SrepoIpcServer ipcServer = new(); + + ipcServer.Initialize(); + + serviceTable.SignalServiceReady(); + + ipcServer.ServiceRequests(); + ipcServer.Shutdown(); + } + } +} |
