IVsBuildableProjectCfg.QueryStatus(Int32) 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.
Determines whether or not a build operation has completed successfully.
public:
int QueryStatus([Runtime::InteropServices::Out] int % pfBuildDone);
int QueryStatus([Runtime::InteropServices::Out] int & pfBuildDone);
public int QueryStatus (out int pfBuildDone);
abstract member QueryStatus : int -> int
Public Function QueryStatus (ByRef pfBuildDone As Integer) As Integer
Parameters
- pfBuildDone
- Int32
[out] Pointer to the flag that is set to true
if the build operation was successful and false
if it was unsuccessful.
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::QueryStatus(
[out] BOOL *pfBuildDone
);