summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt_s.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hle: Remove a large amount of 3ds-specific service code.bunnei2017-10-101-110/+0
|
* Merge pull request #2953 from Subv/applet_launchSebastian Valle2017-10-041-2/+2
|\ | | | | HLE/APT: Always set up the APT parameter when starting a library applet.
| * HLE/APT: Always set up the APT parameter when starting a library applet.Subv2017-09-261-2/+2
| | | | | | | | | | | | | | | | Only use the HLE interface if an HLE applet with the desired id was started. This commit reorganizes the APT code surrounding parameter creation and delivery to make it easier to support LLE applets in the future. As future work, the HLE applet interface can be reworked to utilize the same facilities as the LLE interface.
* | HLE/APT: Always return an error from PrepareToStartNewestHomeMenu so that the Home Menu doesn't try to reboot the system.Subv2017-09-241-2/+2
|/ | | | | As per 3dbrew: "During Home Menu start-up it uses APT:PrepareToStartNewestHomeMenu. If that doesn't return an error(normally NS returns 0xC8A0CFFC for that), Home Menu starts a hardware reboot with APT:StartNewestHomeMenu etc. "
* APT: implement Wrap and Unwrapwwylele2017-02-211-2/+2
|
* Merge pull request #2249 from Subv/sessions_v3Yuri Kunde Schlesner2016-12-151-1/+1
|\ | | | | Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
| * HLE: Use a member variable instead of a virtual function to retrieve the max number of sessions that can be connected to an HLE service at the same time.Subv2016-12-051-1/+1
| |
* | apt: Update apt function tablesLioncash2016-12-081-0/+3
|/ | | | Updated based off information from 3dbrew.
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
|
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-191-2/+3
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-86/+85
|
* Correct APT::0x00550040 and APT::0x00560000 functionJamePeng2016-07-151-2/+2
|
* Implement CheckNew3DS and CheckNew3DSAppJamePeng2016-04-201-3/+5
| | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
* append SetAppCpuTimeLimit and GetAppCpuTimeLimit to APT:AJamePeng2016-04-061-4/+4
|
* implement APT::GetStartupArgumentJamePeng2016-04-041-1/+1
|
* services: Get rid of unnecessary includesLioncash2016-02-021-2/+0
|
* services: Update some function tablesLioncash2015-12-301-0/+6
|
* Service/APT: Fixed a regression, PreloadLibraryApplet should also start an applet when called.Subv2015-07-241-2/+2
|
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-3/+0
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+104
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.