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.

14 lines
272 B
C#

namespace OPCDA
{
using System;
internal class Constants
{
public const int OPC_BROWSE_HASCHILDREN = 1;
public const int OPC_BROWSE_ISITEM = 2;
public const int OPC_READABLE = 1;
public const int OPC_WRITEABLE = 2;
}
}