2019-11-14 06:18:44 +01:00
|
|
|
|
using Ryujinx.HLE.HOS.Services.Am.AppletAE;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets
|
|
|
|
|
{
|
|
|
|
|
interface IApplet
|
|
|
|
|
{
|
|
|
|
|
event EventHandler AppletStateChanged;
|
|
|
|
|
|
2019-11-18 12:16:26 +01:00
|
|
|
|
ResultCode Start(AppletSession normalSession,
|
|
|
|
|
AppletSession interactiveSession);
|
|
|
|
|
|
2019-11-14 06:18:44 +01:00
|
|
|
|
ResultCode GetResult();
|
|
|
|
|
}
|
|
|
|
|
}
|