IVsBuildableProjectCfg::QueryStartUpToDateCheck Method (UInt32, array<Int32>^, array<Int32>^)
Visual Studio 2015
Determines whether or not a project is able to check if the current build is up to date.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
int QueryStartUpToDateCheck( unsigned int dwOptions, array<int>^ pfSupported, array<int>^ pfReady )
Parameters
- dwOptions
-
Type:
System::UInt32
[in] Options governing the up-to-date check. This parameter can contain values from VsUpToDateCheckFlags and VsUpToDateCheckFlags2.
- pfSupported
-
Type:
array<System::Int32>^
[out, optional] Pointer to the flag that is set to true if the project supports checking if the current build is up to date.
- pfReady
-
Type:
array<System::Int32>^
[out, optional] Pointer to the flag that is set to true if the project is ready to start the up-to-date check. This flag is currently unused.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsBuildableProjectCfg::QueryStartUpToDateCheck(
[in] DWORD dwOptions,
[out, optional] BOOL *pfSupported,
[out, optional] BOOL *pfReady
);
Show: