mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 03:28:33 +00:00
35e5612766
* Implement Player Select applet * Initialize the Horizon system reference * Tidy up namespaces * Resolve nits * Resolve nits * Rename stack to queue * Implement an applet FIFO * Remove debugging log * Log applet creation events * Reorganise AppletFifo * More reorganisation * Final changes
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();
|
|
}
|
|
}
|