summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* APT: implement Wrap and Unwrapwwylele2017-02-211-0/+40
|
* Merge pull request #2249 from Subv/sessions_v3Yuri Kunde Schlesner2016-12-151-0/+3
|\ | | | | Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
| * Fixed the codestyle to match our clang-format rules.Subv2016-12-141-1/+2
| |
| * HLE: Use a member variable instead of a virtual function to retrieve the max number of sessions that can be connected to an HLE service at the same time.Subv2016-12-051-0/+2
| |
* | APT::GetStartupArgument: force clear startup argumentmailwl2016-12-111-1/+3
|/
* Bravely Default/Second stuck #1822 (#2188)pippo29312016-11-241-0/+11
| | | | | | | | | | | | | | | * 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-6/+17
| | | | Names now make sense and match 3dbrew.
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-1/+0
| | | | | | | 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-8/+6
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-45/+50
|
* Correct APT::0x00550040 and APT::0x00560000 functionJamePeng2016-07-151-10/+16
|
* HLE/Applets: Implement ErrEula appletmailwl2016-07-041-0/+8
|
* Merge pull request #1692 from Subv/rm_getpointer2bunnei2016-05-301-4/+2
|\ | | | | Memory: Remove most usages of GetPointer
| * APT: Remove use of Memory::GetPointerMerryMage2016-05-211-4/+2
| |
* | Merge pull request #1520 from JamePeng/checknew3dsbunnei2016-05-241-0/+44
|\ \ | |/ |/| Implement CheckNew3DS and CheckNew3DSApp
| * Implement CheckNew3DS and CheckNew3DSAppJamePeng2016-04-201-0/+44
| | | | | | | | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
* | HLE/Applets: Use the correct size for the framebuffer SharedMemory in the swkbd and MiiSelector applets.Subv2016-05-071-0/+15
|/
* append SetAppCpuTimeLimit and GetAppCpuTimeLimit to APT:AJamePeng2016-04-061-8/+8
|
* implement APT::GetStartupArgumentJamePeng2016-04-041-0/+17
|
* HLE/Applets: Implemented a dummy Mii Selector applet.Subv2016-03-121-1/+16
| | | | 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.
* 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.