mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 06:58:38 +00:00
4ad3936afd
* refactoring result codes - Add a main enum who can handle some orphalin result codes and the default `ResultCode.Success` one. - Add sub-enum by services when it's needed. - Remove some empty line. - Recast all service calls to ResultCode. - Remove some unneeded static declaration. - Delete unused `NvHelper` class. * NvResult is back * Fix
31 lines
867 B
C#
31 lines
867 B
C#
using Ryujinx.HLE.HOS.Ipc;
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
using Ryujinx.HLE.HOS.Kernel.Memory;
|
|
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Hid
|
|
{
|
|
class IAppletResource : IpcService
|
|
{
|
|
private KSharedMemory _hidSharedMem;
|
|
|
|
public IAppletResource(KSharedMemory hidSharedMem)
|
|
{
|
|
_hidSharedMem = hidSharedMem;
|
|
}
|
|
|
|
[Command(0)]
|
|
// GetSharedMemoryHandle() -> handle<copy>
|
|
public ResultCode GetSharedMemoryHandle(ServiceCtx context)
|
|
{
|
|
if (context.Process.HandleTable.GenerateHandle(_hidSharedMem, out int handle) != KernelResult.Success)
|
|
{
|
|
throw new InvalidOperationException("Out of handles!");
|
|
}
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |