PWLX_CHANGE_PASSWORD_NOTIFY callback function (winwlx.h)

[The WlxChangePasswordNotify function is no longer available for use as of Windows Server 2008 and Windows Vista.]

Called by GINA to indicate it has changed a password.

Note   GINA DLLs are ignored in Windows Vista.
 
This allows Winlogon to notify other network providers on the computer to update their passwords as well.

This function has been superseded by the WlxChangePasswordNotifyEx function.

Syntax

PWLX_CHANGE_PASSWORD_NOTIFY PwlxChangePasswordNotify;

int PwlxChangePasswordNotify(
  [in] HANDLE hWlx,
  [in] PWLX_MPR_NOTIFY_INFO pMprInfo,
  [in] DWORD dwChangeInfo
)
{...}

Parameters

[in] hWlx

Specifies the Winlogon handle passed to GINA in the WlxInitialize call.

[in] pMprInfo

Points to a WLX_MPR_NOTIFY_INFO structure that contains Multiple Provider Router (MPR) information. Winlogon will call LocalFree to free all the data pointed to by this structure when it is done with it.

[in] dwChangeInfo

Changes the information flags from Network Provider API.

Return value

The WlxChangePasswordNotifyEx function returns zero if the function call succeeds. Any other value indicates an error.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Target Platform Windows
Header winwlx.h

See also

WLX_MPR_NOTIFY_INFO

WlxInitialize