<< Back


pfnPasswordChanged

Synopsis

void (CALLBACK* pfnPasswordChanged) (FVSDK_CALLBACK_DATA pvPasswordChangedData, LPCTSTR pszPassword);

Description

Called when the password has been changed.

Parameters

pvPasswordChangedData

The DWORD value set in the FVSDK_Session structure. The meaning of this value is application defined.

pszPassword

A NULL terminated string containing the new password.

Return Value

None

Example

void CALLBACK OnPasswordChanged(FVSDK_CALLBACK_DATA pvPasswordChangedData, LPCTSTR pszPassword)
{
    // tell the user that the password has been changed
    AfxMessageBox("Your password has been changed.", MB_ICONINFORMATION);
} // OnPasswordChanged