IVsUpdateSolutionEvents2.UpdateProjectCfg_Done Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called right after a project configuration is finished building.
public:
int UpdateProjectCfg_Done(Microsoft::VisualStudio::Shell::Interop::IVsHierarchy ^ pHierProj, Microsoft::VisualStudio::Shell::Interop::IVsCfg ^ pCfgProj, Microsoft::VisualStudio::Shell::Interop::IVsCfg ^ pCfgSln, System::UInt32 dwAction, int fSuccess, int fCancel);
public:
int UpdateProjectCfg_Done(Microsoft::VisualStudio::Shell::Interop::IVsHierarchy ^ pHierProj, Microsoft::VisualStudio::Shell::Interop::IVsCfg ^ pCfgProj, Microsoft::VisualStudio::Shell::Interop::IVsCfg ^ pCfgSln, unsigned int dwAction, int fSuccess, int fCancel);
int UpdateProjectCfg_Done(Microsoft::VisualStudio::Shell::Interop::IVsHierarchy const & pHierProj, Microsoft::VisualStudio::Shell::Interop::IVsCfg const & pCfgProj, Microsoft::VisualStudio::Shell::Interop::IVsCfg const & pCfgSln, unsigned int dwAction, int fSuccess, int fCancel);
public int UpdateProjectCfg_Done (Microsoft.VisualStudio.Shell.Interop.IVsHierarchy pHierProj, Microsoft.VisualStudio.Shell.Interop.IVsCfg pCfgProj, Microsoft.VisualStudio.Shell.Interop.IVsCfg pCfgSln, uint dwAction, int fSuccess, int fCancel);
abstract member UpdateProjectCfg_Done : Microsoft.VisualStudio.Shell.Interop.IVsHierarchy * Microsoft.VisualStudio.Shell.Interop.IVsCfg * Microsoft.VisualStudio.Shell.Interop.IVsCfg * uint32 * int * int -> int
Public Function UpdateProjectCfg_Done (pHierProj As IVsHierarchy, pCfgProj As IVsCfg, pCfgSln As IVsCfg, dwAction As UInteger, fSuccess As Integer, fCancel As Integer) As Integer
Parameters
- pHierProj
- IVsHierarchy
[in] Pointer to a hierarchy project object.
- pCfgProj
- IVsCfg
[in] Pointer to a configuration project object.
- pCfgSln
- IVsCfg
[in] Pointer to a configuration solution object.
- dwAction
- UInt32
[in] Double word containing the action.
- fSuccess
- Int32
[in] Flag indicating success.
- fCancel
- Int32
[in] Flag indicating cancel.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsUpdateSolutionEvents2::UpdateProjectCfg_Done(
[in] IVsHierarchy *pHierProj,
[in] IVsCfg *pCfgProj,
[in] IVsCfg *pCfgSln,
[in] DWORD dwAction,
[in] BOOL fSuccess,
[in] BOOL fCancel
);