mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 09:08:39 +00:00
18 lines
568 B
C#
18 lines
568 B
C#
using Ryujinx.HLE.HOS.Services.Arp;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Bcat.ServiceCreator
|
|
{
|
|
class IBcatService : IpcService
|
|
{
|
|
public IBcatService(ApplicationLaunchProperty applicationLaunchProperty) { }
|
|
|
|
[CommandCmif(10100)]
|
|
// RequestSyncDeliveryCache() -> object<nn::bcat::detail::ipc::IDeliveryCacheProgressService>
|
|
public ResultCode RequestSyncDeliveryCache(ServiceCtx context)
|
|
{
|
|
MakeObject(context, new IDeliveryCacheProgressService(context));
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |