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