using System;
using System.Runtime.InteropServices;
namespace VisualStudioMock
{
///
/// Information about the error state of an instance.
///
[ComImport]
[Guid("46DCCD94-A287-476A-851E-DFBC2FFDBC20")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISetupErrorState
{
/*
///
/// Gets an array of failed package references.
///
/// An array of failed package references.
[return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UNKNOWN)]
ISetupFailedPackageReference[] GetFailedPackages();
///
/// Gets an array of skipped package references.
///
/// An array of skipped package references.
[return: MarshalAs(UnmanagedType.SafeArray, SafeArraySubType = VarEnum.VT_UNKNOWN)]
ISetupPackageReference[] GetSkippedPackages();
*/
}
}