IDebugModule2::ReloadSymbols_Deprecated

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

OBSOLETE. DO NOT USE. Reloads the symbols for this module.

Syntax

HRESULT ReloadSymbols(   
   LPCOLESTR pszUrlToSymbols,  
   BSTR*     pbstrDebugMessage  
);  
int ReloadSymbols(   
   string     pszUrlToSymbols,  
   out string pbstrDebugMessage  
);  

Parameters

pszUrlToSymbols
[in] The path to the symbol store.

pbstrDebugMessage
[out] Returns an informational message, such as a status or error message, that is displayed to the right of the module name in the Modules window.

Return Value

If successful, returns S_OK; otherwise, returns an error code. A debug engine should always return E_FAIL.

Remarks

This method is no longer supported. Implement the LoadSymbols method instead.

See Also

IDebugModule2
LoadSymbols