Revert "bcat ipc (#4446)" (#4801)

This reverts commit 4250732353.
This commit is contained in:
gdkchan
2023-05-04 13:16:51 -03:00
committed by GitHub
parent 3b8ac1641a
commit 264438ff19
31 changed files with 418 additions and 592 deletions

View File

@@ -0,0 +1,18 @@
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;
}
}
}