<< Back


pfnHelpButtonPressed

Synopsis

void (CALLBACK* pfnHelpButtonPressed) (FVSDK_CALLBACK_DATA pvHelpButtonPressedData, UINT nSource);

Description

Called when one of the help buttons is pressed in one of the FTP Voyager SDK's dialogs.

Parameters

pvHelpButtonPressedData

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

nSource

The source dialog as defined in FVSDK_Session.h.
FVSDK_HELP_BUTTON_FIND_FILES the find files help button has been pressed
FVSDK_HELP_BUTTON_SYNC_FOLDERS the synchronize folders help button has been pressed
FVSDK_HELP_BUTTON_FILE_EDIT the online edit dialog help button has been pressed

Return Value

None

Example

void CALLBACK OnHelpButtonPressed(FVSDK_CALLBACK_DATA pvHelpButtonPressedData, UINT nSource)
{
    // show the user the help for the specific dialog
    // ...
} // OnHelpButtonPressed