AppletId.cs
1 namespace Ryujinx.Horizon.Sdk.Applet 2 { 3 enum AppletId : uint 4 { 5 None = 0x00, 6 Application = 0x01, 7 OverlayApplet = 0x02, 8 SystemAppletMenu = 0x03, 9 SystemApplication = 0x04, 10 LibraryAppletAuth = 0x0A, 11 LibraryAppletCabinet = 0x0B, 12 LibraryAppletController = 0x0C, 13 LibraryAppletDataErase = 0x0D, 14 LibraryAppletError = 0x0E, 15 LibraryAppletNetConnect = 0x0F, 16 LibraryAppletPlayerSelect = 0x10, 17 LibraryAppletSwkbd = 0x11, 18 LibraryAppletMiiEdit = 0x12, 19 LibraryAppletWeb = 0x13, 20 LibraryAppletShop = 0x14, 21 LibraryAppletPhotoViewer = 0x15, 22 LibraryAppletSet = 0x16, 23 LibraryAppletOfflineWeb = 0x17, 24 LibraryAppletLoginShare = 0x18, 25 LibraryAppletWifiWebAuth = 0x19, 26 LibraryAppletMyPage = 0x1A, 27 LibraryAppletGift = 0x1B, 28 LibraryAppletUserMigration = 0x1C, 29 LibraryAppletPreomiaSys = 0x1D, 30 LibraryAppletStory = 0x1E, 31 LibraryAppletPreomiaUsr = 0x1F, 32 LibraryAppletPreomiaUsrDummy = 0x20, 33 LibraryAppletSample = 0x21, 34 LibraryAppletPromoteQualification = 0x22, 35 LibraryAppletOfflineWebFw17 = 0x32, 36 LibraryAppletOfflineWeb2Fw17 = 0x33, 37 LibraryAppletLoginShareFw17 = 0x35, 38 LibraryAppletLoginShare2Fw17 = 0x36, 39 LibraryAppletLoginShare3Fw17 = 0x37, 40 Unknown38 = 0x38, 41 DevlopmentTool = 0x3E8, 42 CombinationLA = 0x3F1, 43 AeSystemApplet = 0x3F2, 44 AeOverlayApplet = 0x3F3, 45 AeStarter = 0x3F4, 46 AeLibraryAppletAlone = 0x3F5, 47 AeLibraryApplet1 = 0x3F6, 48 AeLibraryApplet2 = 0x3F7, 49 AeLibraryApplet3 = 0x3F8, 50 AeLibraryApplet4 = 0x3F9, 51 AppletISA = 0x3FA, 52 AppletIOA = 0x3FB, 53 AppletISTA = 0x3FC, 54 AppletILA1 = 0x3FD, 55 AppletILA2 = 0x3FE, 56 CombinationLAFw17 = 0x700000DC, 57 AeSystemAppletFw17 = 0x700000E6, 58 AeOverlayAppletFw17 = 0x700000E7, 59 AeStarterFw17 = 0x700000E8, 60 AeLibraryAppletAloneFw17 = 0x700000E9, 61 AeLibraryApplet1Fw17 = 0x700000EA, 62 AeLibraryApplet2Fw17 = 0x700000EB, 63 AeLibraryApplet3Fw17 = 0x700000EC, 64 AeLibraryApplet4Fw17 = 0x700000ED, 65 AppletISAFw17 = 0x700000F0, 66 AppletIOAFw17 = 0x700000F1, 67 AppletISTAFw17 = 0x700000F2, 68 AppletILA1Fw17 = 0x700000F3, 69 AppletILA2Fw17 = 0x700000F4, 70 } 71 }