summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-05-19use IPCHelper for PTM servicesemmaus1-0/+8
2017-03-18refactor APT service to use the new IPC helpersLectem1-0/+2
2016-12-08ptm: Update ptm_sysm function tableLioncash1-3/+4
Updated based off information from 3dbrew.
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-10/+11
2016-04-20Implement CheckNew3DS and CheckNew3DSAppJamePeng1-0/+8
Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
2016-02-02services: Get rid of unnecessary includesLioncash1-3/+4
2015-10-24Fix copy pasteFiliph Sandström1-1/+1
2015-10-23Update ptm.hFiliph Sandström1-0/+8
2015-05-29Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot1-3/+3
2015-05-12PTM: Changed the way the ptm services are handled to be like thepurpasmart961-9/+33
IR, HID, and APT services.
2015-04-03Services: Stubs and minor changespurpasmart961-2/+2
2015-03-04Services: Moved the PTM and APT services to their own folderSubv1-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.