PWLX_CHANGE_PASSWORD_NOTIFY_EX callback function (winwlx.h)

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

Called by GINA to tell a specific network provider (or all network providers) that a password has changed.

Note   GINA DLLs are ignored in Windows Vista.
 
In this way, GINA can pass a change password request through to a specific network provider.

This function supersedes the WlxChangePasswordNotify function.

Syntax

PWLX_CHANGE_PASSWORD_NOTIFY_EX PwlxChangePasswordNotifyEx;

int PwlxChangePasswordNotifyEx(
  [in] HANDLE hWlx,
  [in] PWLX_MPR_NOTIFY_INFO pMprInfo,
  [in] DWORD dwChangeInfo,
  [in] PWSTR ProviderName,
  [in] PVOID Reserved
)
{...}

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.

[in] ProviderName

Specifies the name of a network provider, or NULL to allow the system to notify all network providers.

[in] Reserved

Reserved. Must be set to zero.

Return value

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

Remarks

This function supersedes the WlxChangePasswordNotify function.

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

WlxChangePasswordNotify

WlxInitialize