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