ICommDlgBrowser3::Notify Method

Called by a Shell view to notify the common dialog box hosting it that an event has occurred.

Syntax

HRESULT Notify(      
    IShellView *pshv,
    DWORD dwNotifyType
);

Parameters

  • pshv
    A pointer to the IShellView interface of the hosted view.
  • dwNotifyType
    A flag that can can take one of the following two values.
    • CDB2N_CONTEXTMENU_START
      Indicates that the shortcut menu is about to be displayed.
    • CDB2N_CONTEXTMENU_DONE
      Indicates that the shortcut menu is no longer displayed.

Return Value

Returns S_OK if successful, or an error value otherwise.

See Also

ICommDlgBrowser2