36 lines
782 B
C#
36 lines
782 B
C#
using System;
|
|
|
|
namespace VisualStudioMock
|
|
{
|
|
/// <summary>
|
|
/// The state of an <see cref="ISetupInstance2" />.
|
|
/// </summary>
|
|
[Flags]
|
|
public enum InstanceState : uint
|
|
{
|
|
/// <summary>
|
|
/// The instance state has not been determined.
|
|
/// </summary>
|
|
None = 0x0,
|
|
/// <summary>
|
|
/// The instance installation path exists.
|
|
/// </summary>
|
|
Local = 0x1,
|
|
/// <summary>
|
|
/// A product is registered to the instance.
|
|
/// </summary>
|
|
Registered = 0x2,
|
|
/// <summary>
|
|
/// No reboot is required for the instance.
|
|
/// </summary>
|
|
NoRebootRequired = 0x4,
|
|
/// <summary>
|
|
/// No errors were reported for the instance.
|
|
/// </summary>
|
|
NoErrors = 0x8,
|
|
/// <summary>
|
|
/// The instance represents a complete install.
|
|
/// </summary>
|
|
Complete = uint.MaxValue
|
|
}
|
|
} |