mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-26 02:40:05 +00:00
added comments the applet ids and added missing app ids
This commit is contained in:
parent
30c130546e
commit
c87882215b
@ -70,35 +70,46 @@ enum class SignalType : u32 {
|
|||||||
|
|
||||||
/// App Id's used by APT functions
|
/// App Id's used by APT functions
|
||||||
enum class AppletId : u32 {
|
enum class AppletId : u32 {
|
||||||
HomeMenu = 0x101,
|
|
||||||
AlternateMenu = 0x103,
|
HomeMenu = 0x101, ///< Home Menu (menu)
|
||||||
Camera = 0x110,
|
AlternateMenu = 0x103, ///< Alternate Menu
|
||||||
FriendsList = 0x112,
|
Camera = 0x110, ///< Camera applet (CtrApp)
|
||||||
GameNotes = 0x113,
|
FriendsList = 0x112, ///< Friends List applet (friend)
|
||||||
InternetBrowser = 0x114,
|
GameNotes = 0x113, ///< Game Notes applet (Cherry)
|
||||||
InstructionManual = 0x115,
|
InternetBrowser = 0x114, ///< Internet Browser (spider/SKATER)
|
||||||
Notifications = 0x116,
|
InstructionManual = 0x115, ///< Instruction Manual applet
|
||||||
Miiverse = 0x117,
|
Notifications = 0x116, ///< Notifications applet (newslist)
|
||||||
MiiversePost = 0x118,
|
Miiverse = 0x117, ///< Miiverse applet (olv)
|
||||||
AmiiboSettings = 0x119,
|
MiiversePost = 0x118, ///< Miiverse posting applet (solv3)
|
||||||
SoftwareKeyboard1 = 0x201,
|
AmiiboSettings = 0x119, ///< Amiibo settings (cabinet)
|
||||||
Ed1 = 0x202,
|
SoftwareKeyboard1 = 0x201, ///< Software Keyboard (swkbd)
|
||||||
PnoteApp = 0x204,
|
Ed1 = 0x202, ///< Mii Selector (appletEd)
|
||||||
SnoteApp = 0x205,
|
PnoteApp = 0x204, ///< Photo Selector (PNOTE_AP)
|
||||||
Error = 0x206,
|
SnoteApp = 0x205, ///< Sound Selector (SNOTE_AP)
|
||||||
Mint = 0x207,
|
Error = 0x206, ///< Error Display (error)
|
||||||
Extrapad = 0x208,
|
Mint = 0x207, ///< eShop applet (mint)
|
||||||
Memolib = 0x209,
|
Extrapad = 0x208, ///< Circle Pad Pro Calibrator (extrapad)
|
||||||
Application = 0x300,
|
Memolib = 0x209, ///< Notepad (memolib)
|
||||||
AnyLibraryApplet = 0x400,
|
Application = 0x300, ///< Current Running Application
|
||||||
SoftwareKeyboard2 = 0x401,
|
Tiger = 0x301, ///< eShop (tiger)
|
||||||
Ed2 = 0x402,
|
AnyLibraryApplet = 0x400, ///< Currently Running Library Applet
|
||||||
PnoteApp2 = 0x404,
|
SoftwareKeyboard2 = 0x401, ///< Software Keyboard (swkbd)
|
||||||
SnoteApp2 = 0x405,
|
Ed2 = 0x402, ///< Mii Selector (appletEd)
|
||||||
Error2 = 0x406,
|
PnoteApp2 = 0x404, ///< Photo Selector (PNOTE_AP)
|
||||||
Mint2 = 0x407,
|
SnoteApp2 = 0x405, ///< Sound Selector (SNOTE_AP)
|
||||||
Extrapad2 = 0x408,
|
Error2 = 0x406, ///< Error Display (error)
|
||||||
Memolib2 = 0x409,
|
Mint2 = 0x407, ///< eShop applet (mint)
|
||||||
|
Extrapad2 = 0x408, ///< Circle Pad Pro Calibrator (extrapad)
|
||||||
|
Memolib2 = 0x409, ///< Notepad (memolib)
|
||||||
|
DevApplet1 = 0xF10, ///< ProgramID: 0004003000008900.
|
||||||
|
DevApplet2 = 0xF11, ///< ProgramID: 000400000FFFFD00.
|
||||||
|
DevApplet3 = 0xF12, ///< ProgramID: 000400000FFFFC00.
|
||||||
|
DevApplet4 = 0xF13, ///< ProgramID: 000400000FFFFB00.
|
||||||
|
DevApplet5 = 0xF14, ///< ProgramID: 000400000FFFF900.
|
||||||
|
DevApplet6 = 0xF15, ///< ProgramID: 000400000FFFF800.
|
||||||
|
DevApplet7 = 0xF16, ///< ProgramID: 000400000FFFF700.
|
||||||
|
DevApplet8 = 0xF17, ///< ProgramID: 000400000FFFF600.
|
||||||
|
DevApplet9 = 0xF18, ///< ProgramID: 000400000FFFF500.
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class StartupArgumentType : u32 {
|
enum class StartupArgumentType : u32 {
|
||||||
@ -265,7 +276,7 @@ void InquireNotification(Service::Interface* self);
|
|||||||
* Outputs:
|
* Outputs:
|
||||||
* 0 : Return Header
|
* 0 : Return Header
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
*/
|
*/
|
||||||
void SendParameter(Service::Interface* self);
|
void SendParameter(Service::Interface* self);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -359,7 +370,7 @@ void PrepareToStartApplication(Service::Interface* self);
|
|||||||
* Outputs:
|
* Outputs:
|
||||||
* 0 : Return Header
|
* 0 : Return Header
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
*/
|
*/
|
||||||
void StartApplication(Service::Interface* self);
|
void StartApplication(Service::Interface* self);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user