29 lines
435 B
C#
29 lines
435 B
C#
using System;
|
|
|
|
namespace LibS7Adv
|
|
{
|
|
public enum ConnectionType
|
|
{
|
|
AdvCoSimulator,
|
|
Sharp7
|
|
}
|
|
|
|
public enum EArea
|
|
{
|
|
InvalidArea = 0,
|
|
Input = 129, // 0x81
|
|
Output = 130, // 0x82
|
|
Marker = 131, // 0x83
|
|
DataBlock = 132, // 0x84
|
|
}
|
|
|
|
public enum EDataType
|
|
{
|
|
Unknown = 0,
|
|
Bool = 1,
|
|
Byte = 2,
|
|
Word = 3,
|
|
DWord = 4
|
|
}
|
|
}
|