summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt_a.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-12-08apt: Update apt function tablesLioncash1-7/+70
Updated based off information from 3dbrew.
2016-11-24Bravely Default/Second stuck #1822 (#2188)pippo29311-1/+1
* Bravely Default/Second stuck #1822 CancelLibraryApplet stub * Log parameter. * Taking care of comments * Sync with 3DBrew * White space ? * lower case
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner1-1/+1
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner1-2/+3
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-29/+28
2016-07-15Correct APT::0x00550040 and APT::0x00560000 functionJamePeng1-2/+2
2016-04-20Implement CheckNew3DS and CheckNew3DSAppJamePeng1-1/+5
Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
2016-04-06append SetAppCpuTimeLimit and GetAppCpuTimeLimit to APT:AJamePeng1-1/+4
2016-04-04implement APT::GetStartupArgumentJamePeng1-0/+1
2016-04-04Append the missing function name"GetAppletInfo" to APT:AJamePeng1-1/+2
2016-02-02services: Get rid of unnecessary includesLioncash1-1/+0
2015-07-24Service/APT: Fixed a regression, PreloadLibraryApplet should also start an applet when called.Subv1-0/+1
2015-07-12HLE/APT: Initial HLE support for applets.Subv1-13/+18
Currently only the SWKBD is emulated, and there's currently no way to ask the user for input, so it always returns "Subv" as the text.
2015-04-03Services: Stubs and minor changespurpasmart961-3/+3
2015-03-04Services: Moved the PTM and APT services to their own folderSubv1-0/+33
This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.