mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-04-23 12:40:16 -05:00

* Migrate audren to new IPC * Migrate audout * Migrate audin * Migrate hwopus * Bye bye old audio service * Switch volume control to IHardwareDeviceDriver * Somewhat unrelated changes * Remove Concentus reference from HLE * Implement OpenAudioRendererForManualExecution * Remove SetVolume/GetVolume methods that are not necessary * Remove SetVolume/GetVolume methods that are not necessary (2) * Fix incorrect volume update * PR feedback * PR feedback * Stub audrec * Init outParameter * Make FinalOutputRecorderParameter/Internal readonly * Make FinalOutputRecorder IDisposable * Fix HardwareOpusDecoderManager parameter buffers * Opus work buffer size and error handling improvements * Add AudioInProtocolName enum * Fix potential divisions by zero
72 lines
2.4 KiB
C#
72 lines
2.4 KiB
C#
namespace Ryujinx.Horizon.Sdk.Applet
|
|
{
|
|
enum AppletId : uint
|
|
{
|
|
None = 0x00,
|
|
Application = 0x01,
|
|
OverlayApplet = 0x02,
|
|
SystemAppletMenu = 0x03,
|
|
SystemApplication = 0x04,
|
|
LibraryAppletAuth = 0x0A,
|
|
LibraryAppletCabinet = 0x0B,
|
|
LibraryAppletController = 0x0C,
|
|
LibraryAppletDataErase = 0x0D,
|
|
LibraryAppletError = 0x0E,
|
|
LibraryAppletNetConnect = 0x0F,
|
|
LibraryAppletPlayerSelect = 0x10,
|
|
LibraryAppletSwkbd = 0x11,
|
|
LibraryAppletMiiEdit = 0x12,
|
|
LibraryAppletWeb = 0x13,
|
|
LibraryAppletShop = 0x14,
|
|
LibraryAppletPhotoViewer = 0x15,
|
|
LibraryAppletSet = 0x16,
|
|
LibraryAppletOfflineWeb = 0x17,
|
|
LibraryAppletLoginShare = 0x18,
|
|
LibraryAppletWifiWebAuth = 0x19,
|
|
LibraryAppletMyPage = 0x1A,
|
|
LibraryAppletGift = 0x1B,
|
|
LibraryAppletUserMigration = 0x1C,
|
|
LibraryAppletPreomiaSys = 0x1D,
|
|
LibraryAppletStory = 0x1E,
|
|
LibraryAppletPreomiaUsr = 0x1F,
|
|
LibraryAppletPreomiaUsrDummy = 0x20,
|
|
LibraryAppletSample = 0x21,
|
|
LibraryAppletPromoteQualification = 0x22,
|
|
LibraryAppletOfflineWebFw17 = 0x32,
|
|
LibraryAppletOfflineWeb2Fw17 = 0x33,
|
|
LibraryAppletLoginShareFw17 = 0x35,
|
|
LibraryAppletLoginShare2Fw17 = 0x36,
|
|
LibraryAppletLoginShare3Fw17 = 0x37,
|
|
Unknown38 = 0x38,
|
|
DevlopmentTool = 0x3E8,
|
|
CombinationLA = 0x3F1,
|
|
AeSystemApplet = 0x3F2,
|
|
AeOverlayApplet = 0x3F3,
|
|
AeStarter = 0x3F4,
|
|
AeLibraryAppletAlone = 0x3F5,
|
|
AeLibraryApplet1 = 0x3F6,
|
|
AeLibraryApplet2 = 0x3F7,
|
|
AeLibraryApplet3 = 0x3F8,
|
|
AeLibraryApplet4 = 0x3F9,
|
|
AppletISA = 0x3FA,
|
|
AppletIOA = 0x3FB,
|
|
AppletISTA = 0x3FC,
|
|
AppletILA1 = 0x3FD,
|
|
AppletILA2 = 0x3FE,
|
|
CombinationLAFw17 = 0x700000DC,
|
|
AeSystemAppletFw17 = 0x700000E6,
|
|
AeOverlayAppletFw17 = 0x700000E7,
|
|
AeStarterFw17 = 0x700000E8,
|
|
AeLibraryAppletAloneFw17 = 0x700000E9,
|
|
AeLibraryApplet1Fw17 = 0x700000EA,
|
|
AeLibraryApplet2Fw17 = 0x700000EB,
|
|
AeLibraryApplet3Fw17 = 0x700000EC,
|
|
AeLibraryApplet4Fw17 = 0x700000ED,
|
|
AppletISAFw17 = 0x700000F0,
|
|
AppletIOAFw17 = 0x700000F1,
|
|
AppletISTAFw17 = 0x700000F2,
|
|
AppletILA1Fw17 = 0x700000F3,
|
|
AppletILA2Fw17 = 0x700000F4,
|
|
}
|
|
}
|