diff --git a/sdk-api-src/content/winwlx/ns-winwlx-wlx_mpr_notify_info.md b/sdk-api-src/content/winwlx/ns-winwlx-wlx_mpr_notify_info.md index 775f87d72e61..b5aaaa2485d3 100644 --- a/sdk-api-src/content/winwlx/ns-winwlx-wlx_mpr_notify_info.md +++ b/sdk-api-src/content/winwlx/ns-winwlx-wlx_mpr_notify_info.md @@ -66,36 +66,24 @@ The WLX_MPR_NOTIFY_INFO structure provides identification and authenticat A pointer to the name of the account logged onto (for example "user_name"). - - - -The string pointed to by pszUserName must be separately allocated by your GINA DLL. It will be deallocated by Winlogon. +The string pointed to by pszUserName must be separately allocated by your GINA DLL, using LocalAlloc. It will be deallocated by Winlogon. ### -field pszDomain A pointer to the name of the domain used to log on. - - - -The string pointed to by pszDomain must be separately allocated by your GINA DLL. It will be deallocated by Winlogon. +The string pointed to by pszDomain must be separately allocated by your GINA DLL, using LocalAlloc. It will be deallocated by Winlogon. ### -field pszPassword A pointer to the plaintext password of the user account. If pszOldPassword is not NULL, pszPassword contains the new password from a password-change operation. +The string pointed to by pszPassword must be separately allocated by your GINA DLL, using LocalAlloc. It will be deallocated by Winlogon. - - -The string pointed to by pszPassword must be separately allocated by your GINA DLL. It will be deallocated by Winlogon. - - For information about protecting passwords, see Handling Passwords. +For information about protecting passwords, see Handling Passwords. ### -field pszOldPassword A pointer to the plaintext old password of the user account whose password has just been changed (in this case, pszPassword contains the new password). - - - -The string pointed to by pszOldPassword must be separately allocated by your GINA DLL. It will be deallocated by Winlogon. \ No newline at end of file +The string pointed to by pszOldPassword must be separately allocated by your GINA DLL, using LocalAlloc. It will be deallocated by Winlogon.