summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/profile_manager.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* profile_manager: Use INVALID_UUID in the initializer of last_opened_userLioncash2018-08-211-1/+1
| | | | Makes it a little bit more self-documenting.
* profile_manager: Use type aliases for username data, profile data, and user arraysLioncash2018-08-211-10/+13
| | | | | Avoids the need to repeatedly specify the whole array type in multiple places.
* profile_manager: Take ProfileInfo by const reference where applicableLioncash2018-08-211-4/+4
| | | | | | ProfileInfo is quite a large struct in terms of data, and we don't need to perform a copy in these instances, so we can just pass constant references instead.
* profile_manager: Make array parameter to CreateNewUser a const referenceLioncash2018-08-211-1/+1
| | | | | This doesn't modify the passed in array, so this can be a const reference.
* profile_manager: Remove unnecessary staticLioncash2018-08-211-1/+1
| | | | This can just be constexpr like the others
* profile_manager: Simplify UUID's two param constructor, operator==, and operator boolLioncash2018-08-211-6/+4
| | | | | | We can use the constructor initializer list and just compare the contained u128's together instead of comparing each element individually. Ditto for comparing against an invalid UUID.
* profile_manager: Move UUID generation function to the cpp fileLioncash2018-08-211-10/+2
| | | | | This avoids needing to dump the contents of <random> into other files that include the profile manager header.
* Better UUID randomnessDavid Marcec2018-08-111-2/+7
|
* Added better explanations in the profile managerDavid Marcec2018-08-111-0/+3
|
* Code cleanup for profile managerDavid Marcec2018-08-111-9/+11
|
* Removed const from ProfileBase InvalidateDavid Marcec2018-08-111-1/+1
|
* fixed invalid uuid bool operatorDavid Marcec2018-08-111-1/+1
|
* Added GetOpenUserCountDavid Marcec2018-08-111-0/+1
|
* Second round of account changesDavid Marcec2018-08-111-5/+5
|
* First round of account changesDavid Marcec2018-08-111-24/+26
|
* Added IsUserRegistrationRequestPermittedDavid Marcec2018-08-111-0/+2
|
* Inital pass of account backend implementationDavid Marcec2018-08-081-2/+3
| | | | This commit verified working on puyo
* GetProfileBase and GetProfileBaseAndData addedDavid Marcec2018-08-081-1/+12
|
* began initial implementation of "ProfileManager"David Marcec2018-08-081-0/+97