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