forked from Mirror/Ryujinx
0bc8151c7e
* bcat ipc * fix hipc buffer flags * add buffer fixed size flag on generator
12 lines
345 B
C#
12 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);
|
|
}
|
|
}
|