IVsPreviewChangesList::GetListChanges Method (UInt32, array<VSTREELISTITEMCHANGE>^)

 

Returns a list of changes made to the items in the preview list.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

int GetListChanges(
	unsigned int% pcChanges,
	array<VSTREELISTITEMCHANGE>^ prgListChanges
)

Parameters

pcChanges
Type: System::UInt32

[in, out] If prgListChanges parameter is a null value, this parameter returns the number of changes in the list. If prgListChanges is not a null value, this parameter specifies the number of changes to return.

prgListChanges
Type: array<Microsoft.VisualStudio.Shell.Interop::VSTREELISTITEMCHANGE>^

[in, out] An array of VSTREELISTITEMCHANGE structures that describe the change of each item in the preview list. This parameter can be a null value, in which case the number of changes available is returned in the pcChanges parameter.

Return Value

Type: System::Int32

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

From vsshell80.idl:

HRESULT IVsPreviewChangesList::GetListChanges(
   [in,out]                  ULONG                *pcChanges, 
   [in, size_is(*pcChanges)] VSTREELISTITEMCHANGE *prgListChanges
);
Return to top
Show: