diff options
Diffstat (limited to 'src/Ryujinx.HLE/HOS')
7 files changed, 0 insertions, 56 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Wlan/IInfraManager.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/IInfraManager.cs deleted file mode 100644 index a8462578..00000000 --- a/src/Ryujinx.HLE/HOS/Services/Wlan/IInfraManager.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Ryujinx.HLE.HOS.Services.Wlan -{ - [Service("wlan:inf")] - class IInfraManager : IpcService - { - public IInfraManager(ServiceCtx context) { } - } -} diff --git a/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetActionFrame.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetActionFrame.cs deleted file mode 100644 index 060e5854..00000000 --- a/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetActionFrame.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Ryujinx.HLE.HOS.Services.Wlan -{ - [Service("wlan:lga")] - class ILocalGetActionFrame : IpcService - { - public ILocalGetActionFrame(ServiceCtx context) { } - } -} diff --git a/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetFrame.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetFrame.cs deleted file mode 100644 index d726b7d4..00000000 --- a/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetFrame.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Ryujinx.HLE.HOS.Services.Wlan -{ - [Service("wlan:lg")] - class ILocalGetFrame : IpcService - { - public ILocalGetFrame(ServiceCtx context) { } - } -} diff --git a/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalManager.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalManager.cs deleted file mode 100644 index 3db07ac7..00000000 --- a/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalManager.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Ryujinx.HLE.HOS.Services.Wlan -{ - [Service("wlan:lcl")] - class ILocalManager : IpcService - { - public ILocalManager(ServiceCtx context) { } - } -} diff --git a/src/Ryujinx.HLE/HOS/Services/Wlan/ISocketGetFrame.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/ISocketGetFrame.cs deleted file mode 100644 index 5c932923..00000000 --- a/src/Ryujinx.HLE/HOS/Services/Wlan/ISocketGetFrame.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Ryujinx.HLE.HOS.Services.Wlan -{ - [Service("wlan:sg")] - class ISocketGetFrame : IpcService - { - public ISocketGetFrame(ServiceCtx context) { } - } -} diff --git a/src/Ryujinx.HLE/HOS/Services/Wlan/ISocketManager.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/ISocketManager.cs deleted file mode 100644 index 1b40b80e..00000000 --- a/src/Ryujinx.HLE/HOS/Services/Wlan/ISocketManager.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Ryujinx.HLE.HOS.Services.Wlan -{ - [Service("wlan:soc")] - class ISocketManager : IpcService - { - public ISocketManager(ServiceCtx context) { } - } -} diff --git a/src/Ryujinx.HLE/HOS/Services/Wlan/IUnknown1.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/IUnknown1.cs deleted file mode 100644 index 731f8c0a..00000000 --- a/src/Ryujinx.HLE/HOS/Services/Wlan/IUnknown1.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Ryujinx.HLE.HOS.Services.Wlan -{ - [Service("wlan:dtc")] // 6.0.0+ - class IUnknown1 : IpcService - { - public IUnknown1(ServiceCtx context) { } - } -} |