mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-04-18 15:51:51 +00:00
13 lines
345 B
C#
13 lines
345 B
C#
using Ryujinx.Horizon.Bcat.Ipc.Types;
|
|
using Ryujinx.Horizon.Common;
|
|
using Ryujinx.Horizon.Sdk.Sf;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Bcat
|
|
{
|
|
internal interface IDeliveryCacheProgressService : IServiceObject
|
|
{
|
|
Result GetEvent(out int handle);
|
|
Result GetImpl(out DeliveryCacheProgressImpl deliveryCacheProgressImpl);
|
|
}
|
|
}
|