IVsBuildableProjectCfg.QueryStartClean(UInt32, Int32[], Int32[]) Method

Definition

Determines whether or not a project is able to delete all outputs from the previous build, a process known as a clean operation.

int QueryStartClean(unsigned int dwOptions, std::Array <int> const & pfSupported, std::Array <int> const & pfReady);
public int QueryStartClean (uint dwOptions, int[] pfSupported, int[] pfReady);
abstract member QueryStartClean : uint32 * int[] * int[] -> int
Public Function QueryStartClean (dwOptions As UInteger, Optional pfSupported As Integer(), Optional pfReady As Integer()) As Integer

Parameters

dwOptions
UInt32

[in] Options governing the clean operation. Currently, there are no defined options and dwOptions is always zero.

pfSupported
Int32[]

[out, optional] Pointer to the flag that is set to true if the project supports the clean operation.

pfReady
Int32[]

[out, optional] Pointer to the flag that is set to true if the project is ready to start the clean operation. This flag is currently unused.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsBuildableProjectCfg::QueryStartClean(  
   [in] DWORD dwOptions,  
   [out, optional] BOOL *pfSupported,  
   [out, optional] BOOL *pfReady  
);  

Applies to