using System; using System.Runtime.InteropServices; using TDMS.Common; namespace TDMS.Externals { internal partial class DDC : DIAdemConnectivity { [DllImport(DLL, CallingConvention = CallingConvention.StdCall, EntryPoint = "DDC_RemoveChannelGroup")] public static extern Error RemoveChannelGroup(IntPtr channelGroup); [DllImport(DLL, CallingConvention = CallingConvention.StdCall, EntryPoint = "DDC_RemoveChannel")] public static extern Error RemoveChannel(IntPtr channel); [DllImport(DLL, CallingConvention = CallingConvention.StdCall, EntryPoint = "DDC_CloseChannelGroup")] public static extern Error CloseChannelGroup(IntPtr channelGroup); [DllImport(DLL, CallingConvention = CallingConvention.StdCall, EntryPoint = "DDC_CloseChannel")] public static extern Error CloseChannel(IntPtr channel); } }