From 4f0aa0a5894a0a45a289d1a929944412dc028a62 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Mon, 1 Apr 2019 21:31:46 -0400 Subject: [PATCH] Updated pctlauth docs. --- nx/include/switch/applets/pctlauth.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nx/include/switch/applets/pctlauth.h b/nx/include/switch/applets/pctlauth.h index 593d6c41..b416cf6f 100644 --- a/nx/include/switch/applets/pctlauth.h +++ b/nx/include/switch/applets/pctlauth.h @@ -26,7 +26,7 @@ typedef struct { /** * @brief Launches the applet. - * @note Should not be used if a PIN is not already registered. + * @note Should not be used if a PIN is not already registered. See \ref pctlIsRestrictionEnabled. * @param flag Input flag. false = temporarily disable Parental Controls. true = validate the input PIN. */ Result pctlauthShow(bool flag); @@ -40,7 +40,8 @@ Result pctlauthShow(bool flag); Result pctlauthShowEx(u8 arg0, u8 arg1, u8 arg2); /** - * @brief Just calls: pctlauthShowEx(1, 0, 1). + * @brief Just calls: pctlauthShowEx(1, 0, 1). Launches the applet for checking the PIN, used when changing system-settings. + * @note Should not be used if a PIN is not already registered. See \ref pctlIsRestrictionEnabled. */ Result pctlauthShowForConfiguration(void); @@ -51,7 +52,7 @@ Result pctlauthRegisterPasscode(void); /** * @brief Launches the applet for changing the Parental Controls PIN. - * @note Should not be used if a PIN is not already registered. + * @note Should not be used if a PIN is not already registered. See \ref pctlIsRestrictionEnabled. */ Result pctlauthChangePasscode(void);