summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: refactor server architectureLiam2023-02-211-3/+7
| | | | 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-166/+0
|
* ResultVal: Remove MoveFrom()Yuri Kunde Schlesner2017-06-191-1/+1
| | | | | Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue.
* FileSys: Move all result description to errors.hYuri Kunde Schlesner2017-05-251-1/+2
|
* result: Make error description a generic integerYuri Kunde Schlesner2017-05-251-1/+1
| | | | | | | | | It is now known that result code description vary depending on the module, and so they're best defined on a per-module basis. To support this, allow passing in an arbitrary integer instead of limiting to the ones in the ErrorDescription enum. These will be gradually migrated to their individual users, but a few will be kept as "common" codes shared by all modules.
* use IPCHelper for PTM servicesemmaus2017-05-191-30/+36
|
* Merge pull request #2533 from Lectem/apt_ipchelperbunnei2017-04-061-4/+8
|\ | | | | IpcHelper enhancement and APT refactor
| * IPCHelper Skip method + address comments for aptLectem2017-03-181-1/+1
| |
| * move push out of class body and add u8 u16 bool specializationsLectem2017-03-181-1/+1
| |
| * refactor APT service to use the new IPC helpersLectem2017-03-181-4/+8
| |
* | ptm: create SharedExtSave file before openning itwwylele2017-03-251-1/+1
|/
* Merge pull request #2292 from lioncash/boolYuri Kunde Schlesner2016-12-091-1/+1
|\ | | | | ptm: Use boolean instead of integral value
| * ptm: Use boolean instead of integral valueLioncash2016-12-091-1/+1
| | | | | | | | The third parameter of Write is actually a bool type, not an int.
* | service: Add the ptm:s serviceLioncash2016-12-081-0/+1
| | | | | | | | 3dbrew documents this as being the exact same as ptm:sysm
* | service: Drop '_Interface' in ptm service class namesLioncash2016-12-081-5/+5
| | | | | | | | Inheriting from Service::Interface makes this obvious.
* | service: Add ptm::gets and ptm::sets servicesLioncash2016-12-081-0/+4
| |
* | ptm: Update ptm_sysm function tableLioncash2016-12-081-1/+1
|/ | | | Updated based off information from 3dbrew.
* PTM & CFG: use the correct path and error code according to the new FileSys policywwylele2016-11-191-1/+1
|
* 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-2/+1
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-12/+19
|
* New3DS: Minor style cleanup to #1520.bunnei2016-05-241-2/+2
|
* Implement CheckNew3DS and CheckNew3DSAppJamePeng2016-04-201-1/+15
| | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
* HLE/FS: Implemented GetFormatInfoSubv2016-03-201-1/+1
| | | | Format information is currently only implemented for the ExtSaveData, SharedExtSaveData and SaveData archives, the information is stored in a file alongside the root folder of the archive.
* BitField: Make trivially copyable and remove assignment operatorMerryMage2016-02-121-2/+2
|
* Fix wrong branchFiliph Sandström2015-10-231-0/+12
|
* PTM: Changed the way the ptm services are handled to be like thepurpasmart962015-05-121-6/+44
| | | | IR, HID, and APT services.
* FileSys: Clean-up includes, de-inline destructorsYuri Kunde Schlesner2015-05-071-1/+2
|
* Services: Initialize all state variables at bootup.bunnei2015-05-021-2/+5
|
* Services: Stubs and minor changespurpasmart962015-04-031-2/+2
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+76
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.