summaryrefslogtreecommitdiffstats
path: root/src/core/hle/applets (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-01-31HLE/Applets: Stub Mint (eShop) Applet (#2463)mailwl3-0/+106
This allows Phoenix Wright - Dual Destinies to boot.
2016-12-11Add all services to the Service namespaceLioncash1-2/+2
Previously there was a split where some of the services were in the Service namespace and others were not.
2016-12-07applet: Move common IsRunning underlying variable to the Applet classLioncash8-28/+19
Gets rid of basic duplication.
2016-12-07applet: Make virtual destructor defaultedLioncash1-1/+1
2016-12-07applet: Make constructor protectedLioncash1-1/+2
Considering the class is abstract, there's no need to make the constructor public.
2016-11-19APT/Applets: Renamed the members of the SignalType enum.Subv3-9/+9
Names now make sense and match 3dbrew.
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner4-4/+4
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot7-16/+4
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner6-14/+7
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot8-64/+88
2016-07-04HLE/Applets: Implement ErrEula appletmailwl3-0/+108
2016-05-21APT: Remove use of Memory::GetPointerMerryMage3-19/+21
2016-05-21Applets/swkdb: Remove use of Memory::GetPointerMerryMage1-1/+1
2016-05-13HLE/Applets: Give each applet its own block of heap memory, and use that when creating the framebuffer shared memory block.Subv3-4/+14
2016-05-13Kernel/SharedMemory: Properly implemented shared memory support.Subv2-4/+4
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.
2016-05-07HLE/Applets: Use the correct size for the framebuffer SharedMemory in the swkbd and MiiSelector applets.Subv4-23/+29
2016-05-05Layout Mii parameters input/output, and return success as result of applet workmailwl2-0/+49
2016-03-12HLE/Applets: Implemented a dummy Mii Selector applet.Subv3-0/+118
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.
2015-07-24Service/APT: Fixed a regression, PreloadLibraryApplet should also start an applet when called.Subv1-1/+1
2015-07-24Service/APT: Return proper parameters in GetLockHandle.Subv2-0/+12
Documented some APT functions This allows applets to boot.
2015-07-12Core: Fix applet includes using iwyu.Emmanuel Gil Peyrot4-4/+22
2015-07-12Applets: Reworked how the Applet update event is handled.Subv4-31/+57
Applets are now cleaned up in AppletUpdateEvent after calling their respective Update method.
2015-07-12Applets: Add infrastructure to allow custom drawing and input handling in Applets.Subv4-19/+123
2015-07-12HLE/APT: Initial HLE support for applets.Subv4-0/+233
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.