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.
20 lines
507 B
C#
20 lines
507 B
C#
namespace OPCDA.Interface
|
|
{
|
|
using OPCDA;
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack=2)]
|
|
internal class OPCITEMRESULTintern
|
|
{
|
|
public int hServer = 0;
|
|
public short vtCanonicalDataType = 0;
|
|
public short wReserved = 0;
|
|
[MarshalAs(UnmanagedType.U4)]
|
|
public OPCACCESSRIGHTS dwAccessRights = OPCACCESSRIGHTS.OPC_UNKNOWN;
|
|
public int dwBlobSize = 0;
|
|
public int pBlob = 0;
|
|
}
|
|
}
|
|
|