mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
14 lines
295 B
C#
14 lines
295 B
C#
|
using Ryujinx.HLE.HOS.Services.Am.AppletAE;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.HOS.Applets
|
|||
|
{
|
|||
|
interface IApplet
|
|||
|
{
|
|||
|
event EventHandler AppletStateChanged;
|
|||
|
|
|||
|
ResultCode Start(AppletFifo<byte[]> inData, AppletFifo<byte[]> outData);
|
|||
|
ResultCode GetResult();
|
|||
|
}
|
|||
|
}
|