mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 21:00:17 +00:00
25 lines
651 B
C#
25 lines
651 B
C#
using Ryujinx.Horizon.Common;
|
|
using Ryujinx.Memory;
|
|
using System;
|
|
|
|
namespace Ryujinx.Horizon
|
|
{
|
|
public struct ServiceEntry
|
|
{
|
|
private readonly Action _entrypoint;
|
|
private readonly HorizonOptions _options;
|
|
|
|
internal ServiceEntry(Action entrypoint, HorizonOptions options)
|
|
{
|
|
_entrypoint = entrypoint;
|
|
_options = options;
|
|
}
|
|
|
|
public void Start(ISyscallApi syscallApi, IVirtualMemoryManager addressSpace, IThreadContext threadContext)
|
|
{
|
|
HorizonStatic.Register(_options, syscallApi, addressSpace, threadContext);
|
|
|
|
_entrypoint();
|
|
}
|
|
}
|
|
}
|