IDebugEngineLaunch2::CanTerminateProcess

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

Determines if a process can be terminated.

Syntax

HRESULT CanTerminateProcess (   
   IDebugProcess2* pProcess  
);  
int CanTerminateProcess (   
   IDebugProcess2 pProcess  
);  

Parameters

pProcess
[in] An IDebugProcess2 object that represents the process to be terminated.

Return Value

If successful, returns S_OK; otherwise returns an error code. Returns S_FALSE if the engine cannot terminate the process, for example, because access is denied.

Remarks

If this method returns S_OK, then it the TerminateProcess method can be called to actually terminate the process.

See Also

IDebugEngineLaunch2
IDebugProcess2
TerminateProcess