2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ns
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
[Service("aoc:u")]
|
2018-04-06 04:01:52 +00:00
|
|
|
class IAddOnContentManager : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
public IAddOnContentManager(ServiceCtx context) { }
|
2018-04-04 22:16:59 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2)]
|
|
|
|
// CountAddOnContent(u64, pid) -> u32
|
2019-07-14 19:04:38 +00:00
|
|
|
public static ResultCode CountAddOnContent(ServiceCtx context)
|
2018-04-04 22:16:59 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(0);
|
2018-04-04 22:16:59 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceNs);
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-04-04 22:16:59 +00:00
|
|
|
}
|
2018-04-05 00:01:36 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(3)]
|
|
|
|
// ListAddOnContent(u32, u32, u64, pid) -> (u32, buffer<u32, 6>)
|
2019-07-14 19:04:38 +00:00
|
|
|
public static ResultCode ListAddOnContent(ServiceCtx context)
|
2018-04-05 00:01:36 +00:00
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceNs);
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2019-07-02 02:39:22 +00:00
|
|
|
// TODO: This is supposed to write a u32 array aswell.
|
|
|
|
// It's unknown what it contains.
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(0);
|
2018-04-05 00:01:36 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-04-05 00:01:36 +00:00
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
}
|