You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
233 B
C#

namespace OPCDA
{
using System;
[Flags]
public enum OPC_QUALITY_MASTER : short
{
ERROR_QUALITY_VALUE = 0x80,
QUALITY_BAD = 0,
QUALITY_GOOD = 0xc0,
QUALITY_UNCERTAIN = 0x40
}
}