mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-02 09:37:09 +02:00
12 lines
487 B
C#
12 lines
487 B
C#
using Ryujinx.Horizon.Common;
|
|
using Ryujinx.Horizon.Sdk.Sf;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Bcat
|
|
{
|
|
internal interface IServiceCreator : IServiceObject
|
|
{
|
|
Result CreateBcatService(out IBcatService service, ulong pid);
|
|
Result CreateDeliveryCacheStorageService(out IDeliveryCacheStorageService service, ulong pid);
|
|
Result CreateDeliveryCacheStorageServiceWithApplicationId(out IDeliveryCacheStorageService service, Ncm.ApplicationId applicationId);
|
|
}
|
|
}
|