Implement EnumerateDeliveryCacheDirectory

This commit is contained in:
jduncanator 2018-12-07 00:45:00 +11:00
parent b5566282f0
commit 0a033574be

View file

@ -1,3 +1,4 @@
using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
@ -13,9 +14,18 @@ namespace Ryujinx.HLE.HOS.Services.Bcat
{
_commands = new Dictionary<int, ServiceProcessRequest>
{
//...
{ 10, EnumerateDeliveryCacheDirectory }
};
}
private long EnumerateDeliveryCacheDirectory(ServiceCtx context)
{
Logger.PrintStub(LogClass.ServiceBcat);
// We have no cache directories, so return 0.
context.ResponseData.Write(0);
return 0;
}
}
}