summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implement CheckNew3DS and CheckNew3DSAppJamePeng2016-04-205-7/+110
| | | | | | 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-063-13/+16
|
* implement APT::GetStartupArgumentJamePeng2016-04-045-2/+37
|
* Append the missing function name"GetAppletInfo" to APT:AJamePeng2016-04-041-1/+2
|
* svc: Move ResetType enum to the kernel event headerLioncash2016-03-131-2/+2
|
* svc: Make ResetType an enum classLioncash2016-03-121-2/+2
|
* Merge pull request #1266 from Subv/miiappletbunnei2016-03-123-2/+36
|\ | | | | HLE/Applets: Implemented a dummy Mii Selector applet.
| * HLE/Applets: Implemented a dummy Mii Selector applet.Subv2016-03-123-2/+36
| | | | | | | | This prevents some games (like Super Mario 3D Land) from freezing when trying to launch it, however, it's not complete and won't let you go past Mii selection as the parameter structure hasn't been reverse engineered yet.
* | services: Get rid of unnecessary includesLioncash2016-02-024-8/+0
| |
* | services: Update some function tablesLioncash2015-12-302-0/+12
|/
* Core: Improve APT Shared Font hackYuri Kunde Schlesner2015-08-271-2/+2
| | | | Should fix invalid read loops in some games
* APT: Adjust shared font hack so it works with the new linear heap codeYuri Kunde Schlesner2015-08-161-10/+11
|
* Service/APT: Fixed a regression, PreloadLibraryApplet should also start an applet when called.Subv2015-07-245-4/+35
|
* Service/APT: Return proper parameters in GetLockHandle.Subv2015-07-242-14/+37
| | | | | Documented some APT functions This allows applets to boot.
* Ensure all kernel objects are released during shutdownYuri Kunde Schlesner2015-07-171-0/+3
| | | | | | | | This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications.
* Core: Fix applet includes using iwyu.Emmanuel Gil Peyrot2015-07-121-3/+6
|
* Applets: Reworked how the Applet update event is handled.Subv2015-07-122-3/+3
| | | | Applets are now cleaned up in AppletUpdateEvent after calling their respective Update method.
* Applets: Add infrastructure to allow custom drawing and input handling in Applets.Subv2015-07-121-18/+27
|
* HLE/APT: Initial HLE support for applets.Subv2015-07-124-50/+173
| | | | 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.
* Add helpers to create IPC command buffer headers and descriptorsYuri Kunde Schlesner2015-06-231-2/+4
|
* Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot2015-05-292-6/+6
|
* APT/FS: Remove asserts that were causing false positivespurpasmart962015-05-161-2/+0
|
* Kernel: Capture SharedMemory attributes at creation, not when mappingYuri Kunde Schlesner2015-05-111-1/+3
|
* Common: Remove common.hYuri Kunde Schlesner2015-05-073-4/+2
|
* Services: Initialize all state variables at bootup.bunnei2015-05-021-6/+11
|
* APT: (Subv) Fix bug where start event was being incorrectly signaled.bunnei2015-04-101-6/+7
|
* Services: Stubs and minor changespurpasmart962015-04-033-27/+102
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-048-0/+827
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.