mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-25 23:27:58 +02: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;
|
|
}
|
|
}
|
|
} |