summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm_u.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-10-10hle: Remove a large amount of 3ds-specific service code.bunnei1-34/+0
2017-05-19use IPCHelper for PTM servicesemmaus1-1/+1
2016-12-08service: Drop '_Interface' in ptm service class namesLioncash1-1/+1
Inheriting from Service::Interface makes this obvious.
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner1-1/+1
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner1-1/+1
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-14/+14
2016-02-02services: Get rid of unnecessary includesLioncash1-3/+0
2015-10-23Add GetTotalStepCount StubFiliph Sandström1-1/+1
2015-05-12PTM: Changed the way the ptm services are handled to be like thepurpasmart961-62/+0
IR, HID, and APT services.
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-1/+1
2015-03-04Services: Moved the PTM and APT services to their own folderSubv1-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.