Document params and change name to setsys

This commit is contained in:
Joel16 2018-05-18 19:03:25 -05:00
parent 2075261f1e
commit 27009fcf19
2 changed files with 6 additions and 3 deletions

View File

@ -67,5 +67,8 @@ void setsysExit(void);
/// Gets the current system theme.
Result setsysGetColorSetId(ColorSetId* out);
/// Gets the serial number.
Result setGetSerialNumber(char *serial);
/**
* @brief Gets the system's serial number.
* @param serial Pointer to output the serial to. (The buffer size needs to be at least 0x18 bytes)
*/
Result setsysGetSerialNumber(char *serial);

View File

@ -347,7 +347,7 @@ Result setsysGetColorSetId(ColorSetId* out)
}
Result setGetSerialNumber(char *serial) {
Result setsysGetSerialNumber(char *serial) {
IpcCommand c;
ipcInitialize(&c);