summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm_u.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hle: Remove a large amount of 3ds-specific service code.bunnei2017-10-101-34/+0
|
* use IPCHelper for PTM servicesemmaus2017-05-191-1/+1
|
* service: Drop '_Interface' in ptm service class namesLioncash2016-12-081-1/+1
| | | | Inheriting from Service::Interface makes this obvious.
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
|
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-191-1/+1
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-14/+14
|
* services: Get rid of unnecessary includesLioncash2016-02-021-3/+0
|
* Add GetTotalStepCount StubFiliph Sandström2015-10-231-1/+1
|
* PTM: Changed the way the ptm services are handled to be like thepurpasmart962015-05-121-62/+0
| | | | IR, HID, and APT services.
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-1/+1
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+99
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.