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.
22 lines
488 B
C#
22 lines
488 B
C#
namespace OPCDA.NET
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal struct OPCGroupState
|
|
{
|
|
public string Name;
|
|
public bool Public;
|
|
public int UpdateRate;
|
|
public bool Active;
|
|
public int TimeBias;
|
|
public float PercentDeadband;
|
|
public int LocaleID;
|
|
public int HandleClient;
|
|
public int HandleServer;
|
|
public int KeepAliveRate;
|
|
}
|
|
}
|
|
|