summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Service/APT: Fixed a regression, PreloadLibraryApplet should also start an applet when called.Subv2015-07-241-0/+11
|
* Service/APT: Return proper parameters in GetLockHandle.Subv2015-07-241-0/+19
| | | | | Documented some APT functions This allows applets to boot.
* Core: Fix applet includes using iwyu.Emmanuel Gil Peyrot2015-07-121-3/+6
|
* Applets: Reworked how the Applet update event is handled.Subv2015-07-121-1/+1
| | | | Applets are now cleaned up in AppletUpdateEvent after calling their respective Update method.
* HLE/APT: Initial HLE support for applets.Subv2015-07-121-1/+48
| | | | 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.
* Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot2015-05-291-4/+4
|
* Services: Stubs and minor changespurpasmart962015-04-031-6/+43
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+222
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.