mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-21 18:13:14 +02:00
22 lines
No EOL
477 B
C#
22 lines
No EOL
477 B
C#
using Ryujinx.OsHle.Handles;
|
|
using Ryujinx.OsHle.Ipc;
|
|
|
|
namespace Ryujinx.OsHle.Objects
|
|
{
|
|
class HidIAppletResource
|
|
{
|
|
public HSharedMem Handle;
|
|
|
|
public HidIAppletResource(HSharedMem Handle)
|
|
{
|
|
this.Handle = Handle;
|
|
}
|
|
|
|
public static long GetSharedMemoryHandle(ServiceCtx Context)
|
|
{
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Context.Ns.Os.HidHandle);
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |