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