summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Bravely Default/Second stuck #1822 (#2188)pippo29312016-11-241-0/+9
| | | | | | | | | | | | | | | * Bravely Default/Second stuck #1822 CancelLibraryApplet stub * Log parameter. * Taking care of comments * Sync with 3DBrew * White space ? * lower case
* APT/Applets: Renamed the members of the SignalType enum.Subv2016-11-191-1/+1
| | | | Names now make sense and match 3dbrew.
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-7/+5
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-191-4/+2
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-62/+86
|
* Merge pull request #2023 from yuriks/autobase-bcfntbunnei2016-08-301-6/+1
|\ | | | | Auto-detect original shared_font.bin memory base
| * Auto-detect original shared_font.bin memory baseYuri Kunde Schlesner2016-08-271-6/+1
| | | | | | | | | | This allows a file dumped from either an o3DS or a n3DS (and potentially even an original unrebased file) to be used.
* | fix #1942 and adds a few IPC functions for descriptorsLectem2016-08-021-2/+2
|/
* Merge pull request #1950 from JamePeng/fix-apt-0x0055004-and-0x00560000bunnei2016-07-291-6/+9
|\ | | | | Correct APT::0x00550040 and APT::0x00560000 function
| * Correct APT::0x00550040 and APT::0x00560000 functionJamePeng2016-07-151-6/+9
| |
* | Instead of segfaulting, log an error to remind the user to dump the shared font fileHenrik Rydgard2016-07-281-0/+7
|/
* Merge pull request #1692 from Subv/rm_getpointer2bunnei2016-05-301-12/+13
|\ | | | | Memory: Remove most usages of GetPointer
| * APT: Remove use of Memory::GetPointerMerryMage2016-05-211-12/+13
| |
* | Merge pull request #1520 from JamePeng/checknew3dsbunnei2016-05-241-0/+51
|\ \ | |/ |/| Implement CheckNew3DS and CheckNew3DSApp
| * Implement CheckNew3DS and CheckNew3DSAppJamePeng2016-04-201-0/+51
| | | | | | | | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
* | APT: Move the shared font loading and relocation functions to their own subdirectory services/apt/bcfnt.Subv2016-05-131-66/+7
| |
* | APT: Implement relocating the shared font to its true address.Subv2016-05-131-9/+74
| |
* | Kernel/SharedMemory: Properly implemented shared memory support.Subv2016-05-131-26/+12
|/ | | | | | | Applications can request the kernel to allocate a piece of the linear heap for them when creating a shared memory object. Shared memory areas are now properly mapped into the target processes when calling svcMapMemoryBlock. Removed the APT Shared Font hack as it is no longer needed.
* implement APT::GetStartupArgumentJamePeng2016-04-041-0/+17
|
* 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-121-0/+19
|\ | | | | HLE/Applets: Implemented a dummy Mii Selector applet.
| * HLE/Applets: Implemented a dummy Mii Selector applet.Subv2016-03-121-0/+19
| | | | | | | | 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-021-2/+0
|/
* 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-241-1/+20
|
* Service/APT: Return proper parameters in GetLockHandle.Subv2015-07-241-14/+18
| | | | | 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.
* Applets: Reworked how the Applet update event is handled.Subv2015-07-121-2/+2
| | | | 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-121-34/+105
| | | | 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-291-2/+2
|
* 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-071-0/+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-031-18/+56
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+285
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.