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