Make requested changes

This commit is contained in:
Joel16 2018-05-22 09:42:51 -05:00
parent f84c63a38e
commit b7c325812a
2 changed files with 18 additions and 18 deletions

View File

@ -75,36 +75,36 @@ Result setsysGetSerialNumber(char *serial);
/** /**
* @brief Gets the lockscreen status. * @brief Gets the lockscreen status.
* @param out Pointer to output the status to. (1 = enabled, 0 = disabled) * @param out Pointer to output the status to.
*/ */
Result setsysGetLockScreenFlag(u8 *out); Result setsysGetLockScreenFlag(bool *out);
/** /**
* @brief Gets the console information upload status. * @brief Gets the console information upload status.
* @param out Pointer to output the status to. (1 = enabled, 0 = disabled) * @param out Pointer to output the status to.
*/ */
Result setsysGetConsoleInformationUploadFlag(u8 *out); Result setsysGetConsoleInformationUploadFlag(bool *out);
/** /**
* @brief Gets the automatic application download status. * @brief Gets the automatic application download status.
* @param out Pointer to output the status to. (1 = enabled, 0 = disabled) * @param out Pointer to output the status to.
*/ */
Result setsysGetAutomaticApplicationDownloadFlag(u8 *out); Result setsysGetAutomaticApplicationDownloadFlag(bool *out);
/** /**
* @brief Gets the NFC status. * @brief Gets the NFC status.
* @param out Pointer to output the status to. (1 = enabled, 0 = disabled) * @param out Pointer to output the status to.
*/ */
Result setsysGetNfcEnableFlag(u8 *out); Result setsysGetNfcEnableFlag(bool *out);
/** /**
* @brief Gets the wireless LAN status. * @brief Gets the wireless LAN status.
* @param out Pointer to output the status to. (1 = enabled, 0 = disabled) * @param out Pointer to output the status to.
*/ */
Result setsysGetWirelessLanEnableFlag(u8 *out); Result setsysGetWirelessLanEnableFlag(bool *out);
/** /**
* @brief Gets the bluetooth status. * @brief Gets the bluetooth status.
* @param out Pointer to output the status to. (1 = enabled, 0 = disabled) * @param out Pointer to output the status to.
*/ */
Result setsysGetBluetoothEnableFlag(u8 *out); Result setsysGetBluetoothEnableFlag(bool *out);

View File

@ -385,7 +385,7 @@ Result setsysGetSerialNumber(char *serial) {
return rc; return rc;
} }
Result setsysGetLockScreenFlag(u8 *out) { Result setsysGetLockScreenFlag(bool *out) {
IpcCommand c; IpcCommand c;
ipcInitialize(&c); ipcInitialize(&c);
@ -418,7 +418,7 @@ Result setsysGetLockScreenFlag(u8 *out) {
return rc; return rc;
} }
Result setsysGetConsoleInformationUploadFlag(u8 *out) { Result setsysGetConsoleInformationUploadFlag(bool *out) {
IpcCommand c; IpcCommand c;
ipcInitialize(&c); ipcInitialize(&c);
@ -451,7 +451,7 @@ Result setsysGetConsoleInformationUploadFlag(u8 *out) {
return rc; return rc;
} }
Result setsysGetAutomaticApplicationDownloadFlag(u8 *out) { Result setsysGetAutomaticApplicationDownloadFlag(bool *out) {
IpcCommand c; IpcCommand c;
ipcInitialize(&c); ipcInitialize(&c);
@ -484,7 +484,7 @@ Result setsysGetAutomaticApplicationDownloadFlag(u8 *out) {
return rc; return rc;
} }
Result setsysGetNfcEnableFlag(u8 *out) { Result setsysGetNfcEnableFlag(bool *out) {
IpcCommand c; IpcCommand c;
ipcInitialize(&c); ipcInitialize(&c);
@ -517,7 +517,7 @@ Result setsysGetNfcEnableFlag(u8 *out) {
return rc; return rc;
} }
Result setsysGetWirelessLanEnableFlag(u8 *out) { Result setsysGetWirelessLanEnableFlag(bool *out) {
IpcCommand c; IpcCommand c;
ipcInitialize(&c); ipcInitialize(&c);
@ -550,7 +550,7 @@ Result setsysGetWirelessLanEnableFlag(u8 *out) {
return rc; return rc;
} }
Result setsysGetBluetoothEnableFlag(u8 *out) { Result setsysGetBluetoothEnableFlag(bool *out) {
IpcCommand c; IpcCommand c;
ipcInitialize(&c); ipcInitialize(&c);