summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: refactor server architectureLiam2023-02-211-5/+1
| | | | Converts services to have their own processes
* service: ptm: Rewrite PSM and add TSgerman772022-06-291-0/+18
|
* hle: Remove a large amount of 3ds-specific service code.bunnei2017-10-101-118/+0
|
* use IPCHelper for PTM servicesemmaus2017-05-191-0/+8
|
* refactor APT service to use the new IPC helpersLectem2017-03-181-0/+2
|
* ptm: Update ptm_sysm function tableLioncash2016-12-081-3/+4
| | | | Updated based off information from 3dbrew.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-10/+11
|
* Implement CheckNew3DS and CheckNew3DSAppJamePeng2016-04-201-0/+8
| | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
* services: Get rid of unnecessary includesLioncash2016-02-021-3/+4
|
* Fix copy pasteFiliph Sandström2015-10-241-1/+1
|
* Update ptm.hFiliph Sandström2015-10-231-0/+8
|
* Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot2015-05-291-3/+3
|
* PTM: Changed the way the ptm services are handled to be like thepurpasmart962015-05-121-9/+33
| | | | IR, HID, and APT services.
* Services: Stubs and minor changespurpasmart962015-04-031-2/+2
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+65
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.