void (CALLBACK* pfnPasswordChanged) (FVSDK_CALLBACK_DATA pvPasswordChangedData, LPCTSTR pszPassword);
Called when the password has been changed.
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.
None
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