Example #1
0
        public uint DIOGetVer(out TDIO_Version ver)
        {
            MyLog4Net.ILogExtension.DebugWithDebugView(MyLog4Net.Container.Instance.Log, "IVXStreamIOSDKProtocol StrmGetver ");
            IntPtr version = Marshal.AllocHGlobal(256);
            UInt32 retVal  = IVXStreamIOSDKProtocol.StrmGetver(version);


            MyLog4Net.ILogExtension.DebugWithDebugView(MyLog4Net.Container.Instance.Log, "IVXStreamIOSDKProtocol StrmGetver ret:" + 0);
            ver       = new TDIO_Version();
            ver.szVer = Marshal.PtrToStringAuto(version);
            return(0);
        }