2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Apm
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
[Service("apm")]
|
|
|
|
[Service("apm:p")]
|
2018-04-06 04:01:52 +00:00
|
|
|
class IManager : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
public IManager(ServiceCtx context) { }
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(0)]
|
|
|
|
// OpenSession() -> object<nn::apm::ISession>
|
2018-12-06 11:16:24 +00:00
|
|
|
public long OpenSession(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new ISession());
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|