mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-03-26 15:45:17 +01:00
* Horizon: Migrate wlan and stubs latest services This PR migrate empty wlan services, values are found by RE. Latest firmwares added some other services which are now stubbed and up-to-date. * Fix imports ordering
17 lines
365 B
C#
17 lines
365 B
C#
namespace Ryujinx.Horizon.Wlan
|
|
{
|
|
class WlanMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
WlanIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|