2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Apm
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
2019-09-18 20:45:11 -04:00
|
|
|
[Service("apm")] // 8.0.0+
|
2018-04-06 00:01:52 -04:00
|
|
|
class IManager : IpcService
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
2019-07-11 21:13:43 -04:00
|
|
|
public IManager(ServiceCtx context) { }
|
2018-02-09 19:14:55 -05:00
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(0)]
|
|
|
|
// OpenSession() -> object<nn::apm::ISession>
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode OpenSession(ServiceCtx context)
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
MakeObject(context, new ISession());
|
2018-02-24 23:34:16 -05:00
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.Success;
|
2018-02-09 19:14:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|