summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii/mii.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: set: Migrate ISystemSettingsServer to new IPCNarr the Reg2024-02-141-3/+6
|
* service: use const references for input raw dataLiam2024-02-011-1/+1
|
* service: mii: Set arguments as constNarr the Reg2024-01-291-7/+8
|
* service: mii: Migrate service to new interfaceNarr the Reg2024-01-261-404/+159
|
* am: mii_edit: Implement DB operationsNarr the Reg2023-09-221-53/+61
|
* service: mii: Address review commentsgerman772023-09-181-10/+9
|
* service: mii: Implement the rest of the servicegerman772023-09-181-33/+329
|
* mii: service: Address reviewgerman772023-09-111-1/+1
|
* mii: Prepare Interface for new implementationgerman772023-09-111-63/+65
|
* service: mii: separate mii types into their own filegerman772023-09-111-1/+1
|
* service: mii: Add mii util and resultgerman772023-09-111-6/+5
|
* core: remove ResultVal typeLiam2023-08-081-22/+12
|
* service: move hle_ipc from kernelLiam2023-03-011-13/+13
|
* service: refactor server architectureLiam2023-02-211-5/+7
| | | | Converts services to have their own processes
* core: nfp: Implement Convert and RecreateApplicationArea, accuracy fixesNarr the Reg2022-09-071-10/+22
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-1/+1
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* service: Reduce header include overheadMorph2021-10-071-1/+0
|
* service: Append service name prefix to common filenamesMorph2021-07-141-1/+1
|
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-10/+10
| | | | Transition to PascalCase for result names.
* core: Make variable shadowing a compile-time errorLioncash2021-05-161-2/+2
| | | | | | Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
* service: Eliminate usages of the global system instanceLioncash2020-11-271-8/+10
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* service: Update function tablesLioncash2020-10-281-0/+1
| | | | Updates function tables according to info on SwitchBrew.
* hle: service: mii: Rewrite service to properly support creation of random and default miis.bunnei2020-07-121-219/+96
|
* Merge pull request #3094 from lioncash/tablesbunnei2019-11-251-0/+2
|\ | | | | service: Update function tables
| * service: Update function tablesLioncash2019-11-121-0/+2
| | | | | | | | | | | | Keeps the function tables up to date. Updated based off information from Switchbrew.
* | service: Resolve sign conversion errorsLioncash2019-11-121-3/+3
|/ | | | | These are fairly trivial to resolve and most of the changes entail using RESULT_UNKNOWN over ResultCode(-1).
* mii: Implement IDatabaseService SetInterfaceVersionZach Hilman2019-07-071-1/+15
| | | Appears to set a member variable used to affect the API that games access, and the method used to store data.
* mii: Implement Delete and Destroy fileZach Hilman2019-04-251-8/+79
|
* mii: Implement IsUpdated command (IPC 0)Zach Hilman2019-04-251-9/+18
|
* mii: Implement IDatabaseService commands using MiiManagerZach Hilman2019-04-251-15/+242
| | | Since the MiiManager was designed around the IPC interface, this is quite easy. Only functions that were clearly defined were implemented.
* service: Add mii servicesLioncash2018-07-271-0/+107
Adds the skeleton for the mii services based off information provided by Switch Brew