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.

23 lines
601 B
C#

namespace OPCDA.Interface
{
using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode, Pack=2)]
internal class OPCITEMDEFintern
{
[MarshalAs(UnmanagedType.LPWStr)]
public string szAccessPath;
[MarshalAs(UnmanagedType.LPWStr)]
public string szItemID;
[MarshalAs(UnmanagedType.Bool)]
public bool bActive;
public int hClient;
public int dwBlobSize;
public IntPtr pBlob;
public short vtRequestedDataType;
public short wReserved;
}
}