IApplet.cs 295 B

12345678910111213
  1. using Ryujinx.HLE.HOS.Services.Am.AppletAE;
  2. using System;
  3. namespace Ryujinx.HLE.HOS.Applets
  4. {
  5. interface IApplet
  6. {
  7. event EventHandler AppletStateChanged;
  8. ResultCode Start(AppletFifo<byte[]> inData, AppletFifo<byte[]> outData);
  9. ResultCode GetResult();
  10. }
  11. }