aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/apt/apt.h
Commit message (Collapse)AuthorAge
* Service/APT: Fixed a regression, PreloadLibraryApplet should also start an ↵Gravatar Subv2015-07-23
| | | | applet when called.
* Service/APT: Return proper parameters in GetLockHandle.Gravatar Subv2015-07-23
| | | | | Documented some APT functions This allows applets to boot.
* Core: Fix applet includes using iwyu.Gravatar Emmanuel Gil Peyrot2015-07-12
|
* Applets: Reworked how the Applet update event is handled.Gravatar Subv2015-07-11
| | | | Applets are now cleaned up in AppletUpdateEvent after calling their respective Update method.
* HLE/APT: Initial HLE support for applets.Gravatar Subv2015-07-11
| | | | 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).Gravatar Emmanuel Gil Peyrot2015-05-29
|
* Services: Stubs and minor changesGravatar purpasmart962015-04-02
|
* Services: Moved the PTM and APT services to their own folderGravatar Subv2015-03-03
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.