diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Am/IWindowController.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Am/IWindowController.cs | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Am/IWindowController.cs b/Ryujinx.HLE/HOS/Services/Am/IWindowController.cs deleted file mode 100644 index 68d0954d..00000000 --- a/Ryujinx.HLE/HOS/Services/Am/IWindowController.cs +++ /dev/null @@ -1,29 +0,0 @@ -using Ryujinx.Common.Logging; - -namespace Ryujinx.HLE.HOS.Services.Am -{ - class IWindowController : IpcService - { - public IWindowController() { } - - [Command(1)] - // GetAppletResourceUserId() -> nn::applet::AppletResourceUserId - public ResultCode GetAppletResourceUserId(ServiceCtx context) - { - Logger.PrintStub(LogClass.ServiceAm); - - context.ResponseData.Write(0L); - - return ResultCode.Success; - } - - [Command(10)] - // AcquireForegroundRights() - public ResultCode AcquireForegroundRights(ServiceCtx context) - { - Logger.PrintStub(LogClass.ServiceAm); - - return ResultCode.Success; - } - } -}
\ No newline at end of file |
