//------------------------------------------------------------------------------ // // // This file was automatically generated by SWIG (http://www.swig.org). // Version 3.0.6 // // Do not make changes to this file unless you know what you are doing--modify // the SWIG interface file instead. //------------------------------------------------------------------------------ namespace mscl { class msclPINVOKE { protected class SWIGExceptionHelper { public delegate void ExceptionDelegate(string message); public delegate void ExceptionArgumentDelegate(string message, string paramName); static ExceptionDelegate applicationDelegate = new ExceptionDelegate(SetPendingApplicationException); static ExceptionDelegate arithmeticDelegate = new ExceptionDelegate(SetPendingArithmeticException); static ExceptionDelegate divideByZeroDelegate = new ExceptionDelegate(SetPendingDivideByZeroException); static ExceptionDelegate indexOutOfRangeDelegate = new ExceptionDelegate(SetPendingIndexOutOfRangeException); static ExceptionDelegate invalidCastDelegate = new ExceptionDelegate(SetPendingInvalidCastException); static ExceptionDelegate invalidOperationDelegate = new ExceptionDelegate(SetPendingInvalidOperationException); static ExceptionDelegate ioDelegate = new ExceptionDelegate(SetPendingIOException); static ExceptionDelegate nullReferenceDelegate = new ExceptionDelegate(SetPendingNullReferenceException); static ExceptionDelegate outOfMemoryDelegate = new ExceptionDelegate(SetPendingOutOfMemoryException); static ExceptionDelegate overflowDelegate = new ExceptionDelegate(SetPendingOverflowException); static ExceptionDelegate systemDelegate = new ExceptionDelegate(SetPendingSystemException); static ExceptionArgumentDelegate argumentDelegate = new ExceptionArgumentDelegate(SetPendingArgumentException); static ExceptionArgumentDelegate argumentNullDelegate = new ExceptionArgumentDelegate(SetPendingArgumentNullException); static ExceptionArgumentDelegate argumentOutOfRangeDelegate = new ExceptionArgumentDelegate(SetPendingArgumentOutOfRangeException); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="SWIGRegisterExceptionCallbacks_mscl")] public static extern void SWIGRegisterExceptionCallbacks_mscl( ExceptionDelegate applicationDelegate, ExceptionDelegate arithmeticDelegate, ExceptionDelegate divideByZeroDelegate, ExceptionDelegate indexOutOfRangeDelegate, ExceptionDelegate invalidCastDelegate, ExceptionDelegate invalidOperationDelegate, ExceptionDelegate ioDelegate, ExceptionDelegate nullReferenceDelegate, ExceptionDelegate outOfMemoryDelegate, ExceptionDelegate overflowDelegate, ExceptionDelegate systemExceptionDelegate); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="SWIGRegisterExceptionArgumentCallbacks_mscl")] public static extern void SWIGRegisterExceptionCallbacksArgument_mscl( ExceptionArgumentDelegate argumentDelegate, ExceptionArgumentDelegate argumentNullDelegate, ExceptionArgumentDelegate argumentOutOfRangeDelegate); static void SetPendingApplicationException(string message) { SWIGPendingException.Set(new global::System.ApplicationException(message, SWIGPendingException.Retrieve())); } static void SetPendingArithmeticException(string message) { SWIGPendingException.Set(new global::System.ArithmeticException(message, SWIGPendingException.Retrieve())); } static void SetPendingDivideByZeroException(string message) { SWIGPendingException.Set(new global::System.DivideByZeroException(message, SWIGPendingException.Retrieve())); } static void SetPendingIndexOutOfRangeException(string message) { SWIGPendingException.Set(new global::System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve())); } static void SetPendingInvalidCastException(string message) { SWIGPendingException.Set(new global::System.InvalidCastException(message, SWIGPendingException.Retrieve())); } static void SetPendingInvalidOperationException(string message) { SWIGPendingException.Set(new global::System.InvalidOperationException(message, SWIGPendingException.Retrieve())); } static void SetPendingIOException(string message) { SWIGPendingException.Set(new global::System.IO.IOException(message, SWIGPendingException.Retrieve())); } static void SetPendingNullReferenceException(string message) { SWIGPendingException.Set(new global::System.NullReferenceException(message, SWIGPendingException.Retrieve())); } static void SetPendingOutOfMemoryException(string message) { SWIGPendingException.Set(new global::System.OutOfMemoryException(message, SWIGPendingException.Retrieve())); } static void SetPendingOverflowException(string message) { SWIGPendingException.Set(new global::System.OverflowException(message, SWIGPendingException.Retrieve())); } static void SetPendingSystemException(string message) { SWIGPendingException.Set(new global::System.SystemException(message, SWIGPendingException.Retrieve())); } static void SetPendingArgumentException(string message, string paramName) { SWIGPendingException.Set(new global::System.ArgumentException(message, paramName, SWIGPendingException.Retrieve())); } static void SetPendingArgumentNullException(string message, string paramName) { global::System.Exception e = SWIGPendingException.Retrieve(); if (e != null) message = message + " Inner Exception: " + e.Message; SWIGPendingException.Set(new global::System.ArgumentNullException(paramName, message)); } static void SetPendingArgumentOutOfRangeException(string message, string paramName) { global::System.Exception e = SWIGPendingException.Retrieve(); if (e != null) message = message + " Inner Exception: " + e.Message; SWIGPendingException.Set(new global::System.ArgumentOutOfRangeException(paramName, message)); } static SWIGExceptionHelper() { SWIGRegisterExceptionCallbacks_mscl( applicationDelegate, arithmeticDelegate, divideByZeroDelegate, indexOutOfRangeDelegate, invalidCastDelegate, invalidOperationDelegate, ioDelegate, nullReferenceDelegate, outOfMemoryDelegate, overflowDelegate, systemDelegate); SWIGRegisterExceptionCallbacksArgument_mscl( argumentDelegate, argumentNullDelegate, argumentOutOfRangeDelegate); } } protected static SWIGExceptionHelper swigExceptionHelper = new SWIGExceptionHelper(); public class SWIGPendingException { [global::System.ThreadStatic] private static global::System.Exception pendingException = null; private static int numExceptionsPending = 0; public static bool Pending { get { bool pending = false; if (numExceptionsPending > 0) if (pendingException != null) pending = true; return pending; } } public static void Set(global::System.Exception e) { if (pendingException != null) throw new global::System.ApplicationException("FATAL: An earlier pending exception from unmanaged code was missed and thus not thrown (" + pendingException.ToString() + ")", e); pendingException = e; lock(typeof(msclPINVOKE)) { numExceptionsPending++; } } public static global::System.Exception Retrieve() { global::System.Exception e = null; if (numExceptionsPending > 0) { if (pendingException != null) { e = pendingException; pendingException = null; lock(typeof(msclPINVOKE)) { numExceptionsPending--; } } } return e; } } protected class SWIGStringHelper { public delegate string SWIGStringDelegate(string message); static SWIGStringDelegate stringDelegate = new SWIGStringDelegate(CreateString); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="SWIGRegisterStringCallback_mscl")] public static extern void SWIGRegisterStringCallback_mscl(SWIGStringDelegate stringDelegate); static string CreateString(string cString) { return cString; } static SWIGStringHelper() { SWIGRegisterStringCallback_mscl(stringDelegate); } } static protected SWIGStringHelper swigStringHelper = new SWIGStringHelper(); static msclPINVOKE() { } //=================================================================================================== // EXCEPTION: Error class Exception_Helper__MSCL_Default { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message); static exception_Delegate customDelegate__MSCL_Default = new exception_Delegate(SetPendingCustomException___MSCL_Default); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_Default")] public static extern void ExceptionRegisterCallback__MSCL_Default(exception_Delegate customCallback); static void SetPendingCustomException___MSCL_Default(string message) { SWIGPendingException.Set(new Error(message)); } static Exception_Helper__MSCL_Default() { ExceptionRegisterCallback__MSCL_Default(customDelegate__MSCL_Default); } } static Exception_Helper__MSCL_Default exceptionHelper_default = new Exception_Helper__MSCL_Default(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_Communication class Exception_Helper__MSCL_Communication { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message); static exception_Delegate customDelegate__MSCL_Communication = new exception_Delegate(SetPendingCustomException__MSCL_Communication); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_Communication")] public static extern void ExceptionRegisterCallback__MSCL_Communication(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_Communication(string message) { SWIGPendingException.Set(new Error_Communication(message)); } static Exception_Helper__MSCL_Communication() { ExceptionRegisterCallback__MSCL_Communication(customDelegate__MSCL_Communication); } } static Exception_Helper__MSCL_Communication exceptionHelper_Communication = new Exception_Helper__MSCL_Communication(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_NodeCommunication class Exception_Helper__MSCL_NodeCommunication { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message, ushort code); static exception_Delegate customDelegate__MSCL_NodeCommunication = new exception_Delegate(SetPendingCustomException__MSCL_NodeCommunication); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_NodeCommunication")] public static extern void ExceptionRegisterCallback__MSCL_NodeCommunication(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_NodeCommunication(string message, ushort code) { SWIGPendingException.Set(new Error_NodeCommunication(message, code)); } static Exception_Helper__MSCL_NodeCommunication() { ExceptionRegisterCallback__MSCL_NodeCommunication(customDelegate__MSCL_NodeCommunication); } } static Exception_Helper__MSCL_NodeCommunication exceptionHelper_NodeCommunication = new Exception_Helper__MSCL_NodeCommunication(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_Connection class Exception_Helper__MSCL_Connection { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message, int code); static exception_Delegate customDelegate__MSCL_Connection = new exception_Delegate(SetPendingCustomException__MSCL_Connection); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_Connection")] public static extern void ExceptionRegisterCallback__MSCL_Connection(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_Connection(string message, int code) { SWIGPendingException.Set(new Error_Connection(message, code)); } static Exception_Helper__MSCL_Connection() { ExceptionRegisterCallback__MSCL_Connection(customDelegate__MSCL_Connection); } } static Exception_Helper__MSCL_Connection exceptionHelper_Connection = new Exception_Helper__MSCL_Connection(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_InvalidSerialPort class Exception_Helper__MSCL_Inv_Com_Port { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message, int code); static exception_Delegate customDelegate__MSCL_Inv_Com_Port = new exception_Delegate(SetPendingCustomException__MSCL_Inv_Com_Port); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_Inv_Com_Port")] public static extern void ExceptionRegisterCallback__MSCL_Inv_Com_Port(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_Inv_Com_Port(string message, int code) { SWIGPendingException.Set(new Error_InvalidSerialPort(message, code)); } static Exception_Helper__MSCL_Inv_Com_Port() { ExceptionRegisterCallback__MSCL_Inv_Com_Port(customDelegate__MSCL_Inv_Com_Port); } } static Exception_Helper__MSCL_Inv_Com_Port exceptionHelper_Inv_Com_Port = new Exception_Helper__MSCL_Inv_Com_Port(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_InvalidTcpServer class Exception_Helper__MSCL_Inv_Tcp_Server { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message, int code); static exception_Delegate customDelegate__MSCL_Inv_Tcp_Server = new exception_Delegate(SetPendingCustomException__MSCL_Inv_Tcp_Server); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_Inv_Tcp_Server")] public static extern void ExceptionRegisterCallback__MSCL_Inv_Tcp_Server(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_Inv_Tcp_Server(string message, int code) { SWIGPendingException.Set(new Error_InvalidTcpServer(message, code)); } static Exception_Helper__MSCL_Inv_Tcp_Server() { ExceptionRegisterCallback__MSCL_Inv_Tcp_Server(customDelegate__MSCL_Inv_Tcp_Server); } } static Exception_Helper__MSCL_Inv_Tcp_Server exceptionHelper_Inv_Tcp_Server = new Exception_Helper__MSCL_Inv_Tcp_Server(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_InvalidUnixSocket class Exception_Helper__MSCL_Inv_Unix_Socket { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message, int code); static exception_Delegate customDelegate__MSCL_Inv_Unix_Socket = new exception_Delegate(SetPendingCustomException__MSCL_Inv_Unix_Socket); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_Inv_Unix_Socket")] public static extern void ExceptionRegisterCallback__MSCL_Inv_Unix_Socket(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_Inv_Unix_Socket(string message, int code) { SWIGPendingException.Set(new Error_InvalidUnixSocket(message, code)); } static Exception_Helper__MSCL_Inv_Unix_Socket() { ExceptionRegisterCallback__MSCL_Inv_Unix_Socket(customDelegate__MSCL_Inv_Unix_Socket); } } static Exception_Helper__MSCL_Inv_Unix_Socket exceptionHelper_Inv_Unix_Socket = new Exception_Helper__MSCL_Inv_Unix_Socket(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_NoData class Exception_Helper__MSCL_No_Data { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message); static exception_Delegate customDelegate__MSCL_No_Data = new exception_Delegate(SetPendingCustomException__MSCL_No_Data); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_No_Data")] public static extern void ExceptionRegisterCallback__MSCL_No_Data(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_No_Data(string message) { SWIGPendingException.Set(new Error_NoData(message)); } static Exception_Helper__MSCL_No_Data() { ExceptionRegisterCallback__MSCL_No_Data(customDelegate__MSCL_No_Data); } } static Exception_Helper__MSCL_No_Data exceptionHelper_No_Data = new Exception_Helper__MSCL_No_Data(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_BadDataType class Exception_Helper__MSCL_Bad_Data_Type { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message); static exception_Delegate customDelegate__MSCL_Bad_Data_Type = new exception_Delegate(SetPendingCustomException__MSCL_Bad_Data_Type); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_Bad_Data_Type")] public static extern void ExceptionRegisterCallback__MSCL_Bad_Data_Type(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_Bad_Data_Type(string message) { SWIGPendingException.Set(new Error_BadDataType(message)); } static Exception_Helper__MSCL_Bad_Data_Type() { ExceptionRegisterCallback__MSCL_Bad_Data_Type(customDelegate__MSCL_Bad_Data_Type); } } static Exception_Helper__MSCL_Bad_Data_Type exceptionHelper_Bad_Data_Type = new Exception_Helper__MSCL_Bad_Data_Type(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_UnknownSampleRate class Exception_Helper__MSCL_Unknown_Sample_Rate { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message); static exception_Delegate customDelegate__MSCL_Unknown_Sample_Rate = new exception_Delegate(SetPendingCustomException__MSCL_Unknown_Sample_Rate); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_Unknown_Sample_Rate")] public static extern void ExceptionRegisterCallback__MSCL_Unknown_Sample_Rate(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_Unknown_Sample_Rate(string message) { SWIGPendingException.Set(new Error_UnknownSampleRate(message)); } static Exception_Helper__MSCL_Unknown_Sample_Rate() { ExceptionRegisterCallback__MSCL_Unknown_Sample_Rate(customDelegate__MSCL_Unknown_Sample_Rate); } } static Exception_Helper__MSCL_Unknown_Sample_Rate exceptionHelper_Unknown_Sample_Rate = new Exception_Helper__MSCL_Unknown_Sample_Rate(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_NotSupported class Exception_Helper__MSCL_Not_Supported { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message); static exception_Delegate customDelegate__MSCL_Not_Supported = new exception_Delegate(SetPendingCustomException__MSCL_Not_Supported); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_Not_Supported")] public static extern void ExceptionRegisterCallback__MSCL_Not_Supported(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_Not_Supported(string message) { SWIGPendingException.Set(new Error_NotSupported(message)); } static Exception_Helper__MSCL_Not_Supported() { ExceptionRegisterCallback__MSCL_Not_Supported(customDelegate__MSCL_Not_Supported); } } static Exception_Helper__MSCL_Not_Supported exceptionHelper_Not_Supported = new Exception_Helper__MSCL_Not_Supported(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_MipCmdFailed class Exception_Helper__MSCL_InertialCmdFailed { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message, int code); static exception_Delegate customDelegate__MSCL_InertialCmdFailed = new exception_Delegate(SetPendingCustomException__MSCL_InertialCmdFailed); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_InertialCmdFailed")] public static extern void ExceptionRegisterCallback__MSCL_InertialCmdFailed(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_InertialCmdFailed(string message, int code) { SWIGPendingException.Set(new Error_MipCmdFailed(message, code)); } static Exception_Helper__MSCL_InertialCmdFailed() { ExceptionRegisterCallback__MSCL_InertialCmdFailed(customDelegate__MSCL_InertialCmdFailed); } } static Exception_Helper__MSCL_InertialCmdFailed exceptionHelper_InertialCmdFailed = new Exception_Helper__MSCL_InertialCmdFailed(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_InvalidConfig class Exception_Helper__MSCL_InvalidConfig { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message); static exception_Delegate customDelegate__MSCL_InvalidConfig = new exception_Delegate(SetPendingCustomException__MSCL_InvalidConfig); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_InvalidConfig")] public static extern void ExceptionRegisterCallback__MSCL_InvalidConfig(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_InvalidConfig(string message) { SWIGPendingException.Set(new Error_InvalidConfig(message)); } static Exception_Helper__MSCL_InvalidConfig() { ExceptionRegisterCallback__MSCL_InvalidConfig(customDelegate__MSCL_InvalidConfig); } } static Exception_Helper__MSCL_InvalidConfig exceptionHelper_InvalidConfig = new Exception_Helper__MSCL_InvalidConfig(); //=================================================================================================== //=================================================================================================== // EXCEPTION: Error_InvalidNodeConfig class Exception_Helper__MSCL_InvalidNodeConfig { // C# delegate for the C/C++ exceptionCallback_MSCL_ public delegate void exception_Delegate(string message, ushort code); static exception_Delegate customDelegate__MSCL_InvalidNodeConfig = new exception_Delegate(SetPendingCustomException__MSCL_InvalidNodeConfig); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint = "ExceptionRegisterCallback__MSCL_InvalidNodeConfig")] public static extern void ExceptionRegisterCallback__MSCL_InvalidNodeConfig(exception_Delegate customCallback); static void SetPendingCustomException__MSCL_InvalidNodeConfig(string message, ushort code) { SWIGPendingException.Set(new Error_InvalidNodeConfig(message, code)); } static Exception_Helper__MSCL_InvalidNodeConfig() { ExceptionRegisterCallback__MSCL_InvalidNodeConfig(customDelegate__MSCL_InvalidNodeConfig); } } static Exception_Helper__MSCL_InvalidNodeConfig exceptionHelper_InvalidNodeConfig = new Exception_Helper__MSCL_InvalidNodeConfig(); //=================================================================================================== [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BitMask__SWIG_0")] public static extern global::System.IntPtr new_BitMask__SWIG_0(ushort jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BitMask__SWIG_1")] public static extern global::System.IntPtr new_BitMask__SWIG_1(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_BitMask")] public static extern void delete_BitMask(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask___eq__")] public static extern bool BitMask___eq__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask___ne__")] public static extern bool BitMask___ne__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask___lt__")] public static extern bool BitMask___lt__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask___gt__")] public static extern bool BitMask___gt__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask_fromMask")] public static extern void BitMask_fromMask(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask_toMask")] public static extern ushort BitMask_toMask(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask_enabledCount")] public static extern byte BitMask_enabledCount(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask_enabled")] public static extern bool BitMask_enabled(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask_enable__SWIG_0")] public static extern void BitMask_enable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, bool jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask_enable__SWIG_1")] public static extern void BitMask_enable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BitMask_lastBitEnabled")] public static extern short BitMask_lastBitEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask_MAX_CHANNELS_get")] public static extern byte ChannelMask_MAX_CHANNELS_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelMask__SWIG_0")] public static extern global::System.IntPtr new_ChannelMask__SWIG_0(ushort jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelMask__SWIG_1")] public static extern global::System.IntPtr new_ChannelMask__SWIG_1(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ChannelMask")] public static extern void delete_ChannelMask(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask___eq__")] public static extern bool ChannelMask___eq__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask___ne__")] public static extern bool ChannelMask___ne__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask___lt__")] public static extern bool ChannelMask___lt__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask___gt__")] public static extern bool ChannelMask___gt__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask_fromMask")] public static extern void ChannelMask_fromMask(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask_toMask")] public static extern ushort ChannelMask_toMask(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask_count")] public static extern byte ChannelMask_count(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask_enabled")] public static extern bool ChannelMask_enabled(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask_enable__SWIG_0")] public static extern void ChannelMask_enable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, bool jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask_enable__SWIG_1")] public static extern void ChannelMask_enable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelMask_lastChEnabled")] public static extern byte ChannelMask_lastChEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Value")] public static extern void delete_Value(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_storedAs")] public static extern int Value_storedAs(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_as_float")] public static extern float Value_as_float(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_as_double")] public static extern double Value_as_double(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_as_uint8")] public static extern byte Value_as_uint8(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_as_uint16")] public static extern ushort Value_as_uint16(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_as_uint32")] public static extern uint Value_as_uint32(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_as_int16")] public static extern short Value_as_int16(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_as_int32")] public static extern int Value_as_int32(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_as_bool")] public static extern bool Value_as_bool(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_as_ChannelMask")] public static extern global::System.IntPtr Value_as_ChannelMask(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Value_as_string")] public static extern string Value_as_string(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Bin")] public static extern global::System.IntPtr new_Bin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bin_start")] public static extern global::System.IntPtr Bin_start(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bin_end")] public static extern global::System.IntPtr Bin_end(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bin_count")] public static extern global::System.IntPtr Bin_count(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Bin")] public static extern void delete_Bin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Histogram")] public static extern global::System.IntPtr new_Histogram(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Histogram_binsStart")] public static extern global::System.IntPtr Histogram_binsStart(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Histogram_binsSize")] public static extern global::System.IntPtr Histogram_binsSize(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Histogram_bins")] public static extern global::System.IntPtr Histogram_bins(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Histogram_addBin")] public static extern void Histogram_addBin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Histogram")] public static extern void delete_Histogram(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Timestamp__SWIG_0")] public static extern global::System.IntPtr new_Timestamp__SWIG_0(ulong jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Timestamp__SWIG_1")] public static extern global::System.IntPtr new_Timestamp__SWIG_1(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Timestamp__SWIG_2")] public static extern global::System.IntPtr new_Timestamp__SWIG_2(ushort jarg1, ushort jarg2, ushort jarg3, ushort jarg4, ushort jarg5, ushort jarg6, uint jarg7); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Timestamp")] public static extern void delete_Timestamp(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Timestamp_nanoseconds")] public static extern ulong Timestamp_nanoseconds(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Timestamp_seconds")] public static extern ulong Timestamp_seconds(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Timestamp_ToString")] public static extern string Timestamp_ToString(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Timestamp_setTime")] public static extern void Timestamp_setTime(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Timestamp_setTimeNow")] public static extern void Timestamp_setTimeNow(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Timestamp_timeNow")] public static extern global::System.IntPtr Timestamp_timeNow(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_NANOSECONDS_PER_MICROSECOND_get")] public static extern ulong TimeSpan_NANOSECONDS_PER_MICROSECOND_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_NANOSECONDS_PER_MILLISECOND_get")] public static extern ulong TimeSpan_NANOSECONDS_PER_MILLISECOND_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_NANOSECONDS_PER_SECOND_get")] public static extern ulong TimeSpan_NANOSECONDS_PER_SECOND_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_getNanoseconds")] public static extern ulong TimeSpan_getNanoseconds(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_getMicroseconds")] public static extern ulong TimeSpan_getMicroseconds(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_getMilliseconds")] public static extern ulong TimeSpan_getMilliseconds(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_getSeconds")] public static extern ulong TimeSpan_getSeconds(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_NanoSeconds")] public static extern global::System.IntPtr TimeSpan_NanoSeconds(ulong jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_MicroSeconds")] public static extern global::System.IntPtr TimeSpan_MicroSeconds(ulong jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_MilliSeconds")] public static extern global::System.IntPtr TimeSpan_MilliSeconds(ulong jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_Seconds")] public static extern global::System.IntPtr TimeSpan_Seconds(ulong jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_Minutes")] public static extern global::System.IntPtr TimeSpan_Minutes(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_Hours")] public static extern global::System.IntPtr TimeSpan_Hours(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeSpan_Days")] public static extern global::System.IntPtr TimeSpan_Days(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_TimeSpan")] public static extern void delete_TimeSpan(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Version__SWIG_0")] public static extern global::System.IntPtr new_Version__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Version__SWIG_1")] public static extern global::System.IntPtr new_Version__SWIG_1(uint jarg1, uint jarg2, uint jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Version__SWIG_2")] public static extern global::System.IntPtr new_Version__SWIG_2(uint jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Version__SWIG_3")] public static extern global::System.IntPtr new_Version__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version___eq__")] public static extern bool Version___eq__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version___ne__")] public static extern bool Version___ne__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version___lt__")] public static extern bool Version___lt__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version___le__")] public static extern bool Version___le__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version___gt__")] public static extern bool Version___gt__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version___ge__")] public static extern bool Version___ge__(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version_ToString")] public static extern string Version_ToString(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version_fromString")] public static extern bool Version_fromString(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version_majorPart")] public static extern uint Version_majorPart(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version_minorPart")] public static extern uint Version_minorPart(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Version_patchPart")] public static extern uint Version_patchPart(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Version")] public static extern void delete_Version(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MSCL_VERSION_get")] public static extern global::System.IntPtr MSCL_VERSION_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DeviceInfo__SWIG_0")] public static extern global::System.IntPtr new_DeviceInfo__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DeviceInfo__SWIG_1")] public static extern global::System.IntPtr new_DeviceInfo__SWIG_1(string jarg1, string jarg2, uint jarg3, int jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceInfo_description")] public static extern string DeviceInfo_description(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceInfo_serial")] public static extern string DeviceInfo_serial(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceInfo_baudRate")] public static extern uint DeviceInfo_baudRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceInfo_connectionType")] public static extern int DeviceInfo_connectionType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DeviceInfo")] public static extern void delete_DeviceInfo(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Devices_listBaseStations")] public static extern global::System.IntPtr Devices_listBaseStations(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Devices_listInertialDevices")] public static extern global::System.IntPtr Devices_listInertialDevices(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Devices_listPorts")] public static extern global::System.IntPtr Devices_listPorts(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Devices")] public static extern void delete_Devices(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConnectionDebugData__SWIG_0")] public static extern global::System.IntPtr new_ConnectionDebugData__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConnectionDebugData__SWIG_1")] public static extern global::System.IntPtr new_ConnectionDebugData__SWIG_1(bool jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugData_fromRead")] public static extern bool ConnectionDebugData_fromRead(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugData_timestamp")] public static extern global::System.IntPtr ConnectionDebugData_timestamp(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugData_data")] public static extern global::System.IntPtr ConnectionDebugData_data(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ConnectionDebugData")] public static extern void delete_ConnectionDebugData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Connection")] public static extern global::System.IntPtr new_Connection(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_Serial__SWIG_0")] public static extern global::System.IntPtr Connection_Serial__SWIG_0(string jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_Serial__SWIG_1")] public static extern global::System.IntPtr Connection_Serial__SWIG_1(string jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_TcpIp__SWIG_0")] public static extern global::System.IntPtr Connection_TcpIp__SWIG_0(string jarg1, ushort jarg2, string jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_TcpIp__SWIG_1")] public static extern global::System.IntPtr Connection_TcpIp__SWIG_1(string jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_WebSocket")] public static extern global::System.IntPtr Connection_WebSocket(string jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_Mock")] public static extern global::System.IntPtr Connection_Mock(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_description")] public static extern string Connection_description(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_type")] public static extern int Connection_type(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_disconnect")] public static extern void Connection_disconnect(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_reconnect")] public static extern void Connection_reconnect(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_write")] public static extern void Connection_write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_writeStr")] public static extern void Connection_writeStr(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_clearBuffer")] public static extern void Connection_clearBuffer(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_byteReadPos")] public static extern uint Connection_byteReadPos(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_byteAppendPos")] public static extern uint Connection_byteAppendPos(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_rawByteMode")] public static extern void Connection_rawByteMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getRawBytes__SWIG_0")] public static extern global::System.IntPtr Connection_getRawBytes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3, uint jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getRawBytes__SWIG_1")] public static extern global::System.IntPtr Connection_getRawBytes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getRawBytes__SWIG_2")] public static extern global::System.IntPtr Connection_getRawBytes__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getRawBytes__SWIG_3")] public static extern global::System.IntPtr Connection_getRawBytes__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getRawBytesStr__SWIG_0")] public static extern string Connection_getRawBytesStr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3, uint jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getRawBytesStr__SWIG_1")] public static extern string Connection_getRawBytesStr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getRawBytesStr__SWIG_2")] public static extern string Connection_getRawBytesStr__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getRawBytesStr__SWIG_3")] public static extern string Connection_getRawBytesStr__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getRawBytesWithPattern__SWIG_0")] public static extern global::System.IntPtr Connection_getRawBytesWithPattern__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, uint jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getRawBytesWithPattern__SWIG_1")] public static extern global::System.IntPtr Connection_getRawBytesWithPattern__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_debugMode")] public static extern void Connection_debugMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getDebugData__SWIG_0")] public static extern global::System.IntPtr Connection_getDebugData__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Connection_getDebugData__SWIG_1")] public static extern global::System.IntPtr Connection_getDebugData__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Connection")] public static extern void delete_Connection(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WsdaInfo__SWIG_0")] public static extern global::System.IntPtr new_WsdaInfo__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WsdaInfo__SWIG_1")] public static extern global::System.IntPtr new_WsdaInfo__SWIG_1(string jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaInfo_ipAddress")] public static extern string WsdaInfo_ipAddress(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaInfo_port")] public static extern ushort WsdaInfo_port(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaInfo_name")] public static extern string WsdaInfo_name(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WsdaInfo")] public static extern void delete_WsdaInfo(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WsdaFinder")] public static extern global::System.IntPtr new_WsdaFinder(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WsdaFinder")] public static extern void delete_WsdaFinder(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaFinder_found")] public static extern global::System.IntPtr WsdaFinder_found(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaFinder_restart")] public static extern void WsdaFinder_restart(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessTypes_UNKNOWN_RSSI_get")] public static extern short WirelessTypes_UNKNOWN_RSSI_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessTypes")] public static extern global::System.IntPtr new_WirelessTypes(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WirelessTypes")] public static extern void delete_WirelessTypes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SampleRate__SWIG_0")] public static extern global::System.IntPtr new_SampleRate__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SampleRate__SWIG_1")] public static extern global::System.IntPtr new_SampleRate__SWIG_1(int jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_ToString")] public static extern string SampleRate_ToString(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_prettyStr")] public static extern string SampleRate_prettyStr(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_samplePeriod")] public static extern global::System.IntPtr SampleRate_samplePeriod(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_samplesPerSecond")] public static extern double SampleRate_samplesPerSecond(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_rateType")] public static extern int SampleRate_rateType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_samples")] public static extern uint SampleRate_samples(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_toWirelessSampleRate")] public static extern int SampleRate_toWirelessSampleRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_Hertz")] public static extern global::System.IntPtr SampleRate_Hertz(uint jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_KiloHertz")] public static extern global::System.IntPtr SampleRate_KiloHertz(uint jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_Seconds")] public static extern global::System.IntPtr SampleRate_Seconds(uint jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_Event")] public static extern global::System.IntPtr SampleRate_Event(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRate_FromWirelessEepromValue")] public static extern global::System.IntPtr SampleRate_FromWirelessEepromValue(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SampleRate")] public static extern void delete_SampleRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Vector")] public static extern global::System.IntPtr new_Vector(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Vector_valuesType")] public static extern int Vector_valuesType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Vector_size")] public static extern ushort Vector_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Vector_as_floatAt")] public static extern float Vector_as_floatAt(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Vector_as_uint16At")] public static extern ushort Vector_as_uint16At(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Vector_as_uint8At")] public static extern byte Vector_as_uint8At(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Vector_ToString")] public static extern string Vector_ToString(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Vector")] public static extern void delete_Vector(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Matrix")] public static extern global::System.IntPtr new_Matrix(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Matrix_valuesType")] public static extern int Matrix_valuesType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Matrix_rows")] public static extern ushort Matrix_rows(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Matrix_columns")] public static extern ushort Matrix_columns(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Matrix_as_floatAt")] public static extern float Matrix_as_floatAt(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Matrix_as_uint16At")] public static extern ushort Matrix_as_uint16At(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Matrix_as_uint8At")] public static extern byte Matrix_as_uint8At(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Matrix_ToString")] public static extern string Matrix_ToString(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Matrix")] public static extern void delete_Matrix(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_StructuralHealth")] public static extern global::System.IntPtr new_StructuralHealth(float jarg1, uint jarg2, float jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StructuralHealth_angle")] public static extern float StructuralHealth_angle(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StructuralHealth_uptime")] public static extern uint StructuralHealth_uptime(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StructuralHealth_damage")] public static extern float StructuralHealth_damage(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StructuralHealth_processingRate")] public static extern global::System.IntPtr StructuralHealth_processingRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StructuralHealth_histogram")] public static extern global::System.IntPtr StructuralHealth_histogram(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_StructuralHealth")] public static extern void delete_StructuralHealth(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DataPoint")] public static extern void delete_DataPoint(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataPoint_channelProperty")] public static extern global::System.IntPtr DataPoint_channelProperty(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataPoint_as_Vector")] public static extern global::System.IntPtr DataPoint_as_Vector(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataPoint_as_Matrix")] public static extern global::System.IntPtr DataPoint_as_Matrix(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataPoint_as_Timestamp")] public static extern global::System.IntPtr DataPoint_as_Timestamp(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataPoint_as_Bytes")] public static extern global::System.IntPtr DataPoint_as_Bytes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataPoint_as_StructuralHealth")] public static extern global::System.IntPtr DataPoint_as_StructuralHealth(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataPoint_as_RfSweep")] public static extern global::System.IntPtr DataPoint_as_RfSweep(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataPoint_as_string")] public static extern string DataPoint_as_string(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConfigIssue__SWIG_0")] public static extern global::System.IntPtr new_ConfigIssue__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConfigIssue__SWIG_1")] public static extern global::System.IntPtr new_ConfigIssue__SWIG_1(int jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConfigIssue__SWIG_2")] public static extern global::System.IntPtr new_ConfigIssue__SWIG_2(int jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssue_id")] public static extern int ConfigIssue_id(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssue_description")] public static extern string ConfigIssue_description(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssue_isChannelGroupIssue")] public static extern bool ConfigIssue_isChannelGroupIssue(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssue_channelMask")] public static extern global::System.IntPtr ConfigIssue_channelMask(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ConfigIssue")] public static extern void delete_ConfigIssue(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ActivitySense")] public static extern global::System.IntPtr new_ActivitySense(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ActivitySense_enabled__SWIG_0")] public static extern bool ActivitySense_enabled__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ActivitySense_enabled__SWIG_1")] public static extern void ActivitySense_enabled__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ActivitySense_activityThreshold__SWIG_0")] public static extern float ActivitySense_activityThreshold__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ActivitySense_activityThreshold__SWIG_1")] public static extern void ActivitySense_activityThreshold__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ActivitySense_inactivityThreshold__SWIG_0")] public static extern float ActivitySense_inactivityThreshold__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ActivitySense_inactivityThreshold__SWIG_1")] public static extern void ActivitySense_inactivityThreshold__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ActivitySense_activityTime__SWIG_0")] public static extern float ActivitySense_activityTime__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ActivitySense_activityTime__SWIG_1")] public static extern void ActivitySense_activityTime__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ActivitySense_inactivityTimeout__SWIG_0")] public static extern float ActivitySense_inactivityTimeout__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ActivitySense_inactivityTimeout__SWIG_1")] public static extern void ActivitySense_inactivityTimeout__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ActivitySense")] public static extern void delete_ActivitySense(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Trigger__SWIG_0")] public static extern global::System.IntPtr new_Trigger__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Trigger__SWIG_1")] public static extern global::System.IntPtr new_Trigger__SWIG_1(byte jarg1, int jarg2, float jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Trigger_channelNumber__SWIG_0")] public static extern byte Trigger_channelNumber__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Trigger_channelNumber__SWIG_1")] public static extern void Trigger_channelNumber__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Trigger_triggerType__SWIG_0")] public static extern int Trigger_triggerType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Trigger_triggerType__SWIG_1")] public static extern void Trigger_triggerType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Trigger_triggerValue__SWIG_0")] public static extern float Trigger_triggerValue__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Trigger_triggerValue__SWIG_1")] public static extern void Trigger_triggerValue__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Trigger")] public static extern void delete_Trigger(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_EventTriggerOptions")] public static extern global::System.IntPtr new_EventTriggerOptions(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_triggerMask__SWIG_0")] public static extern global::System.IntPtr EventTriggerOptions_triggerMask__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_triggerMask__SWIG_1")] public static extern void EventTriggerOptions_triggerMask__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_anyTriggersEnabled")] public static extern bool EventTriggerOptions_anyTriggersEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_triggerEnabled")] public static extern bool EventTriggerOptions_triggerEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_enableTrigger__SWIG_0")] public static extern void EventTriggerOptions_enableTrigger__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, bool jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_enableTrigger__SWIG_1")] public static extern void EventTriggerOptions_enableTrigger__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_preDuration__SWIG_0")] public static extern uint EventTriggerOptions_preDuration__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_preDuration__SWIG_1")] public static extern void EventTriggerOptions_preDuration__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_postDuration__SWIG_0")] public static extern uint EventTriggerOptions_postDuration__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_postDuration__SWIG_1")] public static extern void EventTriggerOptions_postDuration__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_trigger__SWIG_0")] public static extern void EventTriggerOptions_trigger__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_trigger__SWIG_1")] public static extern global::System.IntPtr EventTriggerOptions_trigger__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EventTriggerOptions_triggers")] public static extern global::System.IntPtr EventTriggerOptions_triggers(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_EventTriggerOptions")] public static extern void delete_EventTriggerOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SnCurveSegment__SWIG_0")] public static extern global::System.IntPtr new_SnCurveSegment__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SnCurveSegment__SWIG_1")] public static extern global::System.IntPtr new_SnCurveSegment__SWIG_1(float jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegment_m__SWIG_0")] public static extern float SnCurveSegment_m__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegment_m__SWIG_1")] public static extern void SnCurveSegment_m__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegment_logA__SWIG_0")] public static extern float SnCurveSegment_logA__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegment_logA__SWIG_1")] public static extern void SnCurveSegment_logA__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SnCurveSegment")] public static extern void delete_SnCurveSegment(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_FatigueOptions")] public static extern global::System.IntPtr new_FatigueOptions(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_youngsModulus__SWIG_0")] public static extern float FatigueOptions_youngsModulus__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_youngsModulus__SWIG_1")] public static extern void FatigueOptions_youngsModulus__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_poissonsRatio__SWIG_0")] public static extern float FatigueOptions_poissonsRatio__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_poissonsRatio__SWIG_1")] public static extern void FatigueOptions_poissonsRatio__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_peakValleyThreshold__SWIG_0")] public static extern ushort FatigueOptions_peakValleyThreshold__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_peakValleyThreshold__SWIG_1")] public static extern void FatigueOptions_peakValleyThreshold__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_debugMode__SWIG_0")] public static extern bool FatigueOptions_debugMode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_debugMode__SWIG_1")] public static extern void FatigueOptions_debugMode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_damageAngle__SWIG_0")] public static extern float FatigueOptions_damageAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_damageAngles")] public static extern global::System.IntPtr FatigueOptions_damageAngles(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_damageAngle__SWIG_1")] public static extern void FatigueOptions_damageAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, float jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_snCurveSegment__SWIG_0")] public static extern global::System.IntPtr FatigueOptions_snCurveSegment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_snCurveSegments")] public static extern global::System.IntPtr FatigueOptions_snCurveSegments(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_snCurveSegment__SWIG_1")] public static extern void FatigueOptions_snCurveSegment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_fatigueMode__SWIG_0")] public static extern int FatigueOptions_fatigueMode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_fatigueMode__SWIG_1")] public static extern void FatigueOptions_fatigueMode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_distributedAngleMode_numAngles__SWIG_0")] public static extern byte FatigueOptions_distributedAngleMode_numAngles__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_distributedAngleMode_numAngles__SWIG_1")] public static extern void FatigueOptions_distributedAngleMode_numAngles__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_distributedAngleMode_lowerBound__SWIG_0")] public static extern float FatigueOptions_distributedAngleMode_lowerBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_distributedAngleMode_lowerBound__SWIG_1")] public static extern void FatigueOptions_distributedAngleMode_lowerBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_distributedAngleMode_upperBound__SWIG_0")] public static extern float FatigueOptions_distributedAngleMode_upperBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_distributedAngleMode_upperBound__SWIG_1")] public static extern void FatigueOptions_distributedAngleMode_upperBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_histogramEnable__SWIG_0")] public static extern bool FatigueOptions_histogramEnable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueOptions_histogramEnable__SWIG_1")] public static extern void FatigueOptions_histogramEnable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_FatigueOptions")] public static extern void delete_FatigueOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_HistogramOptions")] public static extern global::System.IntPtr new_HistogramOptions(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HistogramOptions_transmitRate__SWIG_0")] public static extern int HistogramOptions_transmitRate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HistogramOptions_transmitRate__SWIG_1")] public static extern void HistogramOptions_transmitRate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HistogramOptions_binsStart__SWIG_0")] public static extern ushort HistogramOptions_binsStart__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HistogramOptions_binsStart__SWIG_1")] public static extern void HistogramOptions_binsStart__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HistogramOptions_binsSize__SWIG_0")] public static extern ushort HistogramOptions_binsSize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HistogramOptions_binsSize__SWIG_1")] public static extern void HistogramOptions_binsSize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_HistogramOptions")] public static extern void delete_HistogramOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRangeEntry_inputRange_set")] public static extern void InputRangeEntry_inputRange_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRangeEntry_inputRange_get")] public static extern int InputRangeEntry_inputRange_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRangeEntry_hasGain_set")] public static extern void InputRangeEntry_hasGain_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRangeEntry_hasGain_get")] public static extern bool InputRangeEntry_hasGain_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRangeEntry_gain_set")] public static extern void InputRangeEntry_gain_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRangeEntry_gain_get")] public static extern float InputRangeEntry_gain_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_InputRangeEntry__SWIG_0")] public static extern global::System.IntPtr new_InputRangeEntry__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_InputRangeEntry__SWIG_1")] public static extern global::System.IntPtr new_InputRangeEntry__SWIG_1(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_InputRangeEntry__SWIG_2")] public static extern global::System.IntPtr new_InputRangeEntry__SWIG_2(int jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_InputRangeEntry")] public static extern void delete_InputRangeEntry(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TempSensorOptions_Thermocouple")] public static extern global::System.IntPtr TempSensorOptions_Thermocouple(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TempSensorOptions_RTD")] public static extern global::System.IntPtr TempSensorOptions_RTD(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TempSensorOptions_Thermistor")] public static extern global::System.IntPtr TempSensorOptions_Thermistor(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TempSensorOptions_transducerType")] public static extern int TempSensorOptions_transducerType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TempSensorOptions_thermocoupleType")] public static extern int TempSensorOptions_thermocoupleType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TempSensorOptions_rtdType")] public static extern int TempSensorOptions_rtdType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TempSensorOptions_rtdWireType")] public static extern int TempSensorOptions_rtdWireType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TempSensorOptions_thermistorType")] public static extern int TempSensorOptions_thermistorType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_TempSensorOptions")] public static extern void delete_TempSensorOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessModels")] public static extern global::System.IntPtr new_WirelessModels(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WirelessModels")] public static extern void delete_WirelessModels(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_nodeAddress")] public static extern uint NodeDiscovery_nodeAddress(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_frequency")] public static extern int NodeDiscovery_frequency(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_panId")] public static extern ushort NodeDiscovery_panId(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_model")] public static extern int NodeDiscovery_model(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_serialNumber")] public static extern uint NodeDiscovery_serialNumber(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_firmwareVersion")] public static extern global::System.IntPtr NodeDiscovery_firmwareVersion(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_defaultMode")] public static extern int NodeDiscovery_defaultMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_builtInTestResult")] public static extern uint NodeDiscovery_builtInTestResult(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_communicationProtocol")] public static extern int NodeDiscovery_communicationProtocol(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_asppVersion_lxrs")] public static extern global::System.IntPtr NodeDiscovery_asppVersion_lxrs(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_asppVersion_lxrsPlus")] public static extern global::System.IntPtr NodeDiscovery_asppVersion_lxrsPlus(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_baseRssi")] public static extern short NodeDiscovery_baseRssi(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscovery_timestamp")] public static extern global::System.IntPtr NodeDiscovery_timestamp(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_NodeDiscovery")] public static extern global::System.IntPtr new_NodeDiscovery(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_NodeDiscovery")] public static extern void delete_NodeDiscovery(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_LinearEquation__SWIG_0")] public static extern global::System.IntPtr new_LinearEquation__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_LinearEquation__SWIG_1")] public static extern global::System.IntPtr new_LinearEquation__SWIG_1(float jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LinearEquation_slope__SWIG_0")] public static extern void LinearEquation_slope__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LinearEquation_slope__SWIG_1")] public static extern float LinearEquation_slope__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LinearEquation_offset__SWIG_0")] public static extern void LinearEquation_offset__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LinearEquation_offset__SWIG_1")] public static extern float LinearEquation_offset__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_LinearEquation")] public static extern void delete_LinearEquation(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_CalCoefficients__SWIG_0")] public static extern global::System.IntPtr new_CalCoefficients__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_CalCoefficients__SWIG_1")] public static extern global::System.IntPtr new_CalCoefficients__SWIG_1(int jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CalCoefficients_equationType")] public static extern int CalCoefficients_equationType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CalCoefficients_unit")] public static extern int CalCoefficients_unit(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CalCoefficients_linearEquation")] public static extern global::System.IntPtr CalCoefficients_linearEquation(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_CalCoefficients")] public static extern void delete_CalCoefficients(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelGroup")] public static extern global::System.IntPtr new_ChannelGroup(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroup_channels")] public static extern global::System.IntPtr ChannelGroup_channels(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroup_name")] public static extern string ChannelGroup_name(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroup_eepromLocation")] public static extern ushort ChannelGroup_eepromLocation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroup_settings")] public static extern global::System.IntPtr ChannelGroup_settings(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroup_hasSetting")] public static extern bool ChannelGroup_hasSetting(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroup_hasSettingAndChannel")] public static extern bool ChannelGroup_hasSettingAndChannel(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, byte jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ChannelGroup")] public static extern void delete_ChannelGroup(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessChannel__SWIG_0")] public static extern global::System.IntPtr new_WirelessChannel__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessChannel__SWIG_1")] public static extern global::System.IntPtr new_WirelessChannel__SWIG_1(byte jarg1, int jarg2, int jarg3, string jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessChannel__SWIG_2")] public static extern global::System.IntPtr new_WirelessChannel__SWIG_2(byte jarg1, int jarg2, int jarg3, string jarg4, byte jarg5); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannel_channelNumber")] public static extern byte WirelessChannel_channelNumber(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannel_id")] public static extern int WirelessChannel_id(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannel_type")] public static extern int WirelessChannel_type(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannel_description")] public static extern string WirelessChannel_description(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannel_adcResolution")] public static extern byte WirelessChannel_adcResolution(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannel_adcMaxValue")] public static extern uint WirelessChannel_adcMaxValue(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannel_name")] public static extern string WirelessChannel_name(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WirelessChannel")] public static extern void delete_WirelessChannel(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessDataPoint")] public static extern global::System.IntPtr new_WirelessDataPoint(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessDataPoint_channelId")] public static extern int WirelessDataPoint_channelId(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessDataPoint_channelNumber")] public static extern byte WirelessDataPoint_channelNumber(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessDataPoint_channelName")] public static extern string WirelessDataPoint_channelName(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WirelessDataPoint")] public static extern void delete_WirelessDataPoint(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataSweep")] public static extern global::System.IntPtr new_DataSweep(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweep_timestamp")] public static extern global::System.IntPtr DataSweep_timestamp(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweep_tick")] public static extern uint DataSweep_tick(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweep_sampleRate")] public static extern global::System.IntPtr DataSweep_sampleRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweep_nodeAddress")] public static extern uint DataSweep_nodeAddress(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweep_data")] public static extern global::System.IntPtr DataSweep_data(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweep_samplingType")] public static extern int DataSweep_samplingType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweep_nodeRssi")] public static extern short DataSweep_nodeRssi(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweep_baseRssi")] public static extern short DataSweep_baseRssi(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweep_frequency")] public static extern int DataSweep_frequency(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweep_calApplied")] public static extern bool DataSweep_calApplied(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DataSweep")] public static extern void delete_DataSweep(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_CHANNEL_NOT_FLOAT_get")] public static extern float BaseStationAnalogPair_CHANNEL_NOT_FLOAT_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BaseStationAnalogPair")] public static extern global::System.IntPtr new_BaseStationAnalogPair(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_Float")] public static extern global::System.IntPtr BaseStationAnalogPair_Float(ushort jarg1, byte jarg2, float jarg3, float jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_NonFloat")] public static extern global::System.IntPtr BaseStationAnalogPair_NonFloat(ushort jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_nodeAddress__SWIG_0")] public static extern ushort BaseStationAnalogPair_nodeAddress__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_nodeAddress__SWIG_1")] public static extern void BaseStationAnalogPair_nodeAddress__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_nodeChannel__SWIG_0")] public static extern byte BaseStationAnalogPair_nodeChannel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_nodeChannel__SWIG_1")] public static extern void BaseStationAnalogPair_nodeChannel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_expectFloatData__SWIG_0")] public static extern bool BaseStationAnalogPair_expectFloatData__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_expectFloatData__SWIG_1")] public static extern void BaseStationAnalogPair_expectFloatData__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_outputVal_0V__SWIG_0")] public static extern float BaseStationAnalogPair_outputVal_0V__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_outputVal_0V__SWIG_1")] public static extern void BaseStationAnalogPair_outputVal_0V__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_outputVal_3V__SWIG_0")] public static extern float BaseStationAnalogPair_outputVal_3V__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationAnalogPair_outputVal_3V__SWIG_1")] public static extern void BaseStationAnalogPair_outputVal_3V__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_BaseStationAnalogPair")] public static extern void delete_BaseStationAnalogPair(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BaseStationButton__SWIG_0")] public static extern global::System.IntPtr new_BaseStationButton__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BaseStationButton__SWIG_1")] public static extern global::System.IntPtr new_BaseStationButton__SWIG_1(int jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BaseStationButton__SWIG_2")] public static extern global::System.IntPtr new_BaseStationButton__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationButton_command__SWIG_0")] public static extern int BaseStationButton_command__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationButton_command__SWIG_1")] public static extern void BaseStationButton_command__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationButton_nodeAddress__SWIG_0")] public static extern ushort BaseStationButton_nodeAddress__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationButton_nodeAddress__SWIG_1")] public static extern void BaseStationButton_nodeAddress__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_BaseStationButton")] public static extern void delete_BaseStationButton(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BaseStationConfig")] public static extern global::System.IntPtr new_BaseStationConfig(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_transmitPower__SWIG_0")] public static extern int BaseStationConfig_transmitPower__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_transmitPower__SWIG_1")] public static extern void BaseStationConfig_transmitPower__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_communicationProtocol__SWIG_0")] public static extern int BaseStationConfig_communicationProtocol__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_communicationProtocol__SWIG_1")] public static extern void BaseStationConfig_communicationProtocol__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_buttonLongPress__SWIG_0")] public static extern global::System.IntPtr BaseStationConfig_buttonLongPress__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_buttonLongPress__SWIG_1")] public static extern void BaseStationConfig_buttonLongPress__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_buttonShortPress__SWIG_0")] public static extern global::System.IntPtr BaseStationConfig_buttonShortPress__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_buttonShortPress__SWIG_1")] public static extern void BaseStationConfig_buttonShortPress__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_analogPairingEnable__SWIG_0")] public static extern bool BaseStationConfig_analogPairingEnable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_analogPairingEnable__SWIG_1")] public static extern void BaseStationConfig_analogPairingEnable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_analogTimeoutTime__SWIG_0")] public static extern ushort BaseStationConfig_analogTimeoutTime__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_analogTimeoutTime__SWIG_1")] public static extern void BaseStationConfig_analogTimeoutTime__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_analogTimeoutVoltage__SWIG_0")] public static extern float BaseStationConfig_analogTimeoutVoltage__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_analogTimeoutVoltage__SWIG_1")] public static extern void BaseStationConfig_analogTimeoutVoltage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_analogExceedanceEnable__SWIG_0")] public static extern bool BaseStationConfig_analogExceedanceEnable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_analogExceedanceEnable__SWIG_1")] public static extern void BaseStationConfig_analogExceedanceEnable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_analogPairing__SWIG_0")] public static extern global::System.IntPtr BaseStationConfig_analogPairing__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationConfig_analogPairing__SWIG_1")] public static extern void BaseStationConfig_analogPairing__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_BaseStationConfig")] public static extern void delete_BaseStationConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BeaconStatus__SWIG_0")] public static extern global::System.IntPtr new_BeaconStatus__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BeaconStatus__SWIG_1")] public static extern global::System.IntPtr new_BeaconStatus__SWIG_1(bool jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BeaconStatus_enabled")] public static extern bool BeaconStatus_enabled(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BeaconStatus_timestamp")] public static extern global::System.IntPtr BeaconStatus_timestamp(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_BeaconStatus")] public static extern void delete_BeaconStatus(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BaseStationInfo")] public static extern global::System.IntPtr new_BaseStationInfo(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_BaseStationInfo")] public static extern void delete_BaseStationInfo(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT_get")] public static extern ulong BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT_get")] public static extern ulong BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_BROADCAST_NODE_ADDRESS_get")] public static extern uint BaseStation_BROADCAST_NODE_ADDRESS_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_BROADCAST_NODE_ADDRESS_ASPP3_get")] public static extern uint BaseStation_BROADCAST_NODE_ADDRESS_ASPP3_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BaseStation__SWIG_0")] public static extern global::System.IntPtr new_BaseStation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_BaseStation__SWIG_1")] public static extern global::System.IntPtr new_BaseStation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_BaseStation")] public static extern void delete_BaseStation(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_Mock__SWIG_0")] public static extern global::System.IntPtr BaseStation_Mock__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_Mock__SWIG_1")] public static extern global::System.IntPtr BaseStation_Mock__SWIG_1(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_deviceName")] public static extern string BaseStation_deviceName(string jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_connection")] public static extern global::System.IntPtr BaseStation_connection(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_features")] public static extern global::System.IntPtr BaseStation_features(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_lastCommunicationTime")] public static extern global::System.IntPtr BaseStation_lastCommunicationTime(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_readWriteRetries__SWIG_0")] public static extern void BaseStation_readWriteRetries__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_readWriteRetries__SWIG_1")] public static extern byte BaseStation_readWriteRetries__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_useEepromCache")] public static extern void BaseStation_useEepromCache(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_clearEepromCache")] public static extern void BaseStation_clearEepromCache(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_frequency")] public static extern int BaseStation_frequency(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_communicationProtocol")] public static extern int BaseStation_communicationProtocol(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_firmwareVersion")] public static extern global::System.IntPtr BaseStation_firmwareVersion(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_model")] public static extern int BaseStation_model(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_serial")] public static extern string BaseStation_serial(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_name")] public static extern string BaseStation_name(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_microcontroller")] public static extern int BaseStation_microcontroller(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_regionCode")] public static extern int BaseStation_regionCode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getData__SWIG_0")] public static extern global::System.IntPtr BaseStation_getData__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getData__SWIG_1")] public static extern global::System.IntPtr BaseStation_getData__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getData__SWIG_2")] public static extern global::System.IntPtr BaseStation_getData__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_totalData")] public static extern uint BaseStation_totalData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getNodeDiscoveries")] public static extern global::System.IntPtr BaseStation_getNodeDiscoveries(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_timeout__SWIG_0")] public static extern void BaseStation_timeout__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_timeout__SWIG_1")] public static extern ulong BaseStation_timeout__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_ping")] public static extern bool BaseStation_ping(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_readEeprom")] public static extern ushort BaseStation_readEeprom(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_writeEeprom")] public static extern void BaseStation_writeEeprom(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_enableBeacon__SWIG_0")] public static extern global::System.IntPtr BaseStation_enableBeacon__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_enableBeacon__SWIG_1")] public static extern global::System.IntPtr BaseStation_enableBeacon__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_disableBeacon")] public static extern void BaseStation_disableBeacon(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_beaconStatus")] public static extern global::System.IntPtr BaseStation_beaconStatus(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_startRfSweepMode__SWIG_0")] public static extern void BaseStation_startRfSweepMode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_startRfSweepMode__SWIG_1")] public static extern void BaseStation_startRfSweepMode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3, uint jarg4, ushort jarg5); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_startRfSweepMode__SWIG_2")] public static extern void BaseStation_startRfSweepMode__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3, uint jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_cyclePower__SWIG_0")] public static extern void BaseStation_cyclePower__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_cyclePower__SWIG_1")] public static extern void BaseStation_cyclePower__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_resetRadio")] public static extern void BaseStation_resetRadio(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_changeFrequency")] public static extern void BaseStation_changeFrequency(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_broadcastSetToIdle")] public static extern global::System.IntPtr BaseStation_broadcastSetToIdle(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_verifyConfig")] public static extern bool BaseStation_verifyConfig(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_applyConfig")] public static extern void BaseStation_applyConfig(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getTransmitPower")] public static extern int BaseStation_getTransmitPower(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getButtonLongPress")] public static extern global::System.IntPtr BaseStation_getButtonLongPress(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getButtonShortPress")] public static extern global::System.IntPtr BaseStation_getButtonShortPress(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getAnalogPairingEnabled")] public static extern bool BaseStation_getAnalogPairingEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getAnalogTimeoutTime")] public static extern ushort BaseStation_getAnalogTimeoutTime(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getAnalogTimeoutVoltage")] public static extern float BaseStation_getAnalogTimeoutVoltage(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getAnalogExceedanceEnabled")] public static extern bool BaseStation_getAnalogExceedanceEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStation_getAnalogPair")] public static extern global::System.IntPtr BaseStation_getAnalogPair(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_LoggedDataSweep__SWIG_0")] public static extern global::System.IntPtr new_LoggedDataSweep__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_LoggedDataSweep__SWIG_1")] public static extern global::System.IntPtr new_LoggedDataSweep__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweep_timestamp")] public static extern global::System.IntPtr LoggedDataSweep_timestamp(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweep_tick")] public static extern ulong LoggedDataSweep_tick(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweep_data")] public static extern global::System.IntPtr LoggedDataSweep_data(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweep_calApplied")] public static extern bool LoggedDataSweep_calApplied(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_LoggedDataSweep")] public static extern void delete_LoggedDataSweep(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_RadioFeatures__SWIG_0")] public static extern global::System.IntPtr new_RadioFeatures__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_RadioFeatures__SWIG_1")] public static extern global::System.IntPtr new_RadioFeatures__SWIG_1(ushort jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RadioFeatures_extendedRange")] public static extern bool RadioFeatures_extendedRange(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_RadioFeatures")] public static extern void delete_RadioFeatures(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessNodeConfig")] public static extern global::System.IntPtr new_WirelessNodeConfig(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON_get")] public static extern uint WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON_get(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_defaultMode__SWIG_0")] public static extern int WirelessNodeConfig_defaultMode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_defaultMode__SWIG_1")] public static extern void WirelessNodeConfig_defaultMode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_inactivityTimeout__SWIG_0")] public static extern ushort WirelessNodeConfig_inactivityTimeout__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_inactivityTimeout__SWIG_1")] public static extern void WirelessNodeConfig_inactivityTimeout__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_checkRadioInterval__SWIG_0")] public static extern byte WirelessNodeConfig_checkRadioInterval__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_checkRadioInterval__SWIG_1")] public static extern void WirelessNodeConfig_checkRadioInterval__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_transmitPower__SWIG_0")] public static extern int WirelessNodeConfig_transmitPower__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_transmitPower__SWIG_1")] public static extern void WirelessNodeConfig_transmitPower__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_samplingMode__SWIG_0")] public static extern int WirelessNodeConfig_samplingMode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_samplingMode__SWIG_1")] public static extern void WirelessNodeConfig_samplingMode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_sampleRate__SWIG_0")] public static extern int WirelessNodeConfig_sampleRate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_sampleRate__SWIG_1")] public static extern void WirelessNodeConfig_sampleRate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_activeChannels__SWIG_0")] public static extern global::System.IntPtr WirelessNodeConfig_activeChannels__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_activeChannels__SWIG_1")] public static extern void WirelessNodeConfig_activeChannels__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_numSweeps__SWIG_0")] public static extern uint WirelessNodeConfig_numSweeps__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_numSweeps__SWIG_1")] public static extern void WirelessNodeConfig_numSweeps__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_unlimitedDuration__SWIG_0")] public static extern bool WirelessNodeConfig_unlimitedDuration__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_unlimitedDuration__SWIG_1")] public static extern void WirelessNodeConfig_unlimitedDuration__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_dataFormat__SWIG_0")] public static extern int WirelessNodeConfig_dataFormat__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_dataFormat__SWIG_1")] public static extern void WirelessNodeConfig_dataFormat__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_dataCollectionMethod__SWIG_0")] public static extern int WirelessNodeConfig_dataCollectionMethod__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_dataCollectionMethod__SWIG_1")] public static extern void WirelessNodeConfig_dataCollectionMethod__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_timeBetweenBursts__SWIG_0")] public static extern global::System.IntPtr WirelessNodeConfig_timeBetweenBursts__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_timeBetweenBursts__SWIG_1")] public static extern void WirelessNodeConfig_timeBetweenBursts__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_lostBeaconTimeout__SWIG_0")] public static extern ushort WirelessNodeConfig_lostBeaconTimeout__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_lostBeaconTimeout__SWIG_1")] public static extern void WirelessNodeConfig_lostBeaconTimeout__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_pullUpResistor__SWIG_0")] public static extern bool WirelessNodeConfig_pullUpResistor__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_pullUpResistor__SWIG_1")] public static extern void WirelessNodeConfig_pullUpResistor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_inputRange__SWIG_0")] public static extern int WirelessNodeConfig_inputRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_inputRange__SWIG_1")] public static extern void WirelessNodeConfig_inputRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_hardwareOffset__SWIG_0")] public static extern ushort WirelessNodeConfig_hardwareOffset__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_hardwareOffset__SWIG_1")] public static extern void WirelessNodeConfig_hardwareOffset__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_antiAliasingFilter__SWIG_0")] public static extern int WirelessNodeConfig_antiAliasingFilter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_antiAliasingFilter__SWIG_1")] public static extern void WirelessNodeConfig_antiAliasingFilter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_lowPassFilter__SWIG_0")] public static extern int WirelessNodeConfig_lowPassFilter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_lowPassFilter__SWIG_1")] public static extern void WirelessNodeConfig_lowPassFilter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_highPassFilter__SWIG_0")] public static extern int WirelessNodeConfig_highPassFilter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_highPassFilter__SWIG_1")] public static extern void WirelessNodeConfig_highPassFilter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_gaugeFactor__SWIG_0")] public static extern float WirelessNodeConfig_gaugeFactor__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_gaugeFactor__SWIG_1")] public static extern void WirelessNodeConfig_gaugeFactor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_gaugeResistance__SWIG_0")] public static extern ushort WirelessNodeConfig_gaugeResistance__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_gaugeResistance__SWIG_1")] public static extern void WirelessNodeConfig_gaugeResistance__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_excitationVoltage__SWIG_0")] public static extern int WirelessNodeConfig_excitationVoltage__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_excitationVoltage__SWIG_1")] public static extern void WirelessNodeConfig_excitationVoltage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_numActiveGauges__SWIG_0")] public static extern ushort WirelessNodeConfig_numActiveGauges__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_numActiveGauges__SWIG_1")] public static extern void WirelessNodeConfig_numActiveGauges__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_linearEquation__SWIG_0")] public static extern global::System.IntPtr WirelessNodeConfig_linearEquation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_linearEquation__SWIG_1")] public static extern void WirelessNodeConfig_linearEquation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_unit__SWIG_0")] public static extern int WirelessNodeConfig_unit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_unit__SWIG_1")] public static extern void WirelessNodeConfig_unit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_equationType__SWIG_0")] public static extern int WirelessNodeConfig_equationType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_equationType__SWIG_1")] public static extern void WirelessNodeConfig_equationType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_filterSettlingTime__SWIG_0")] public static extern int WirelessNodeConfig_filterSettlingTime__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_filterSettlingTime__SWIG_1")] public static extern void WirelessNodeConfig_filterSettlingTime__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_thermocoupleType__SWIG_0")] public static extern int WirelessNodeConfig_thermocoupleType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_thermocoupleType__SWIG_1")] public static extern void WirelessNodeConfig_thermocoupleType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_tempSensorOptions__SWIG_0")] public static extern global::System.IntPtr WirelessNodeConfig_tempSensorOptions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_tempSensorOptions__SWIG_1")] public static extern void WirelessNodeConfig_tempSensorOptions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_debounceFilter__SWIG_0")] public static extern ushort WirelessNodeConfig_debounceFilter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_debounceFilter__SWIG_1")] public static extern void WirelessNodeConfig_debounceFilter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_fatigueOptions__SWIG_0")] public static extern global::System.IntPtr WirelessNodeConfig_fatigueOptions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_fatigueOptions__SWIG_1")] public static extern void WirelessNodeConfig_fatigueOptions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_histogramOptions__SWIG_0")] public static extern global::System.IntPtr WirelessNodeConfig_histogramOptions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_histogramOptions__SWIG_1")] public static extern void WirelessNodeConfig_histogramOptions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_activitySense__SWIG_0")] public static extern global::System.IntPtr WirelessNodeConfig_activitySense__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_activitySense__SWIG_1")] public static extern void WirelessNodeConfig_activitySense__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_eventTriggerOptions__SWIG_0")] public static extern global::System.IntPtr WirelessNodeConfig_eventTriggerOptions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_eventTriggerOptions__SWIG_1")] public static extern void WirelessNodeConfig_eventTriggerOptions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_diagnosticInterval__SWIG_0")] public static extern ushort WirelessNodeConfig_diagnosticInterval__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_diagnosticInterval__SWIG_1")] public static extern void WirelessNodeConfig_diagnosticInterval__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_storageLimitMode__SWIG_0")] public static extern int WirelessNodeConfig_storageLimitMode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_storageLimitMode__SWIG_1")] public static extern void WirelessNodeConfig_storageLimitMode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_sensorDelay__SWIG_0")] public static extern uint WirelessNodeConfig_sensorDelay__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_sensorDelay__SWIG_1")] public static extern void WirelessNodeConfig_sensorDelay__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_dataMode__SWIG_0")] public static extern int WirelessNodeConfig_dataMode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_dataMode__SWIG_1")] public static extern void WirelessNodeConfig_dataMode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_derivedDataRate__SWIG_0")] public static extern int WirelessNodeConfig_derivedDataRate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_derivedDataRate__SWIG_1")] public static extern void WirelessNodeConfig_derivedDataRate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_derivedChannelMask__SWIG_0")] public static extern global::System.IntPtr WirelessNodeConfig_derivedChannelMask__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_derivedChannelMask__SWIG_1")] public static extern void WirelessNodeConfig_derivedChannelMask__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_derivedVelocityUnit__SWIG_0")] public static extern int WirelessNodeConfig_derivedVelocityUnit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_derivedVelocityUnit__SWIG_1")] public static extern void WirelessNodeConfig_derivedVelocityUnit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_communicationProtocol__SWIG_0")] public static extern int WirelessNodeConfig_communicationProtocol__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_communicationProtocol__SWIG_1")] public static extern void WirelessNodeConfig_communicationProtocol__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_sensorOutputMode__SWIG_0")] public static extern int WirelessNodeConfig_sensorOutputMode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_sensorOutputMode__SWIG_1")] public static extern void WirelessNodeConfig_sensorOutputMode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_flashBandwidth")] public static extern float WirelessNodeConfig_flashBandwidth(int jarg1, int jarg2, byte jarg3, uint jarg4, int jarg5); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNodeConfig_flashBandwidth_burst")] public static extern float WirelessNodeConfig_flashBandwidth_burst(int jarg1, int jarg2, byte jarg3, uint jarg4, uint jarg5, global::System.Runtime.InteropServices.HandleRef jarg6); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WirelessNodeConfig")] public static extern void delete_WirelessNodeConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_AutoBalanceResult")] public static extern global::System.IntPtr new_AutoBalanceResult(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoBalanceResult_errorCode")] public static extern int AutoBalanceResult_errorCode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoBalanceResult_percentAchieved")] public static extern float AutoBalanceResult_percentAchieved(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoBalanceResult_hardwareOffset")] public static extern ushort AutoBalanceResult_hardwareOffset(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_AutoBalanceResult")] public static extern void delete_AutoBalanceResult(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_useInternalShunt_set")] public static extern void ShuntCalCmdInfo_useInternalShunt_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_useInternalShunt_get")] public static extern bool ShuntCalCmdInfo_useInternalShunt_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_numActiveGauges_set")] public static extern void ShuntCalCmdInfo_numActiveGauges_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_numActiveGauges_get")] public static extern byte ShuntCalCmdInfo_numActiveGauges_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_gaugeResistance_set")] public static extern void ShuntCalCmdInfo_gaugeResistance_set(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_gaugeResistance_get")] public static extern ushort ShuntCalCmdInfo_gaugeResistance_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_shuntResistance_set")] public static extern void ShuntCalCmdInfo_shuntResistance_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_shuntResistance_get")] public static extern uint ShuntCalCmdInfo_shuntResistance_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_gaugeFactor_set")] public static extern void ShuntCalCmdInfo_gaugeFactor_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_gaugeFactor_get")] public static extern float ShuntCalCmdInfo_gaugeFactor_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_inputRange_set")] public static extern void ShuntCalCmdInfo_inputRange_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_inputRange_get")] public static extern int ShuntCalCmdInfo_inputRange_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_hardwareOffset_set")] public static extern void ShuntCalCmdInfo_hardwareOffset_set(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_hardwareOffset_get")] public static extern ushort ShuntCalCmdInfo_hardwareOffset_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_excitationVoltage_set")] public static extern void ShuntCalCmdInfo_excitationVoltage_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ShuntCalCmdInfo_excitationVoltage_get")] public static extern int ShuntCalCmdInfo_excitationVoltage_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ShuntCalCmdInfo")] public static extern global::System.IntPtr new_ShuntCalCmdInfo(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ShuntCalCmdInfo")] public static extern void delete_ShuntCalCmdInfo(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_AutoCalResult")] public static extern void delete_AutoCalResult(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_completionFlag")] public static extern int AutoCalResult_completionFlag(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_AutoCalResult_shmLink")] public static extern global::System.IntPtr new_AutoCalResult_shmLink(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_AutoCalResult_shmLink")] public static extern void delete_AutoCalResult_shmLink(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink_errorFlagCh1")] public static extern int AutoCalResult_shmLink_errorFlagCh1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink_errorFlagCh2")] public static extern int AutoCalResult_shmLink_errorFlagCh2(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink_errorFlagCh3")] public static extern int AutoCalResult_shmLink_errorFlagCh3(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink_offsetCh1")] public static extern float AutoCalResult_shmLink_offsetCh1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink_offsetCh2")] public static extern float AutoCalResult_shmLink_offsetCh2(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink_offsetCh3")] public static extern float AutoCalResult_shmLink_offsetCh3(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink_temperature")] public static extern float AutoCalResult_shmLink_temperature(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_AutoCalResult_shmLink201")] public static extern global::System.IntPtr new_AutoCalResult_shmLink201(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_AutoCalResult_shmLink201")] public static extern void delete_AutoCalResult_shmLink201(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_errorFlagCh1")] public static extern int AutoCalResult_shmLink201_errorFlagCh1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_errorFlagCh2")] public static extern int AutoCalResult_shmLink201_errorFlagCh2(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_errorFlagCh3")] public static extern int AutoCalResult_shmLink201_errorFlagCh3(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_slopeCh1")] public static extern float AutoCalResult_shmLink201_slopeCh1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_offsetCh1")] public static extern float AutoCalResult_shmLink201_offsetCh1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_slopeCh2")] public static extern float AutoCalResult_shmLink201_slopeCh2(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_offsetCh2")] public static extern float AutoCalResult_shmLink201_offsetCh2(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_slopeCh3")] public static extern float AutoCalResult_shmLink201_slopeCh3(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_offsetCh3")] public static extern float AutoCalResult_shmLink201_offsetCh3(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_temperature")] public static extern float AutoCalResult_shmLink201_temperature(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_AutoShuntCalResult")] public static extern global::System.IntPtr new_AutoShuntCalResult(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_AutoShuntCalResult")] public static extern void delete_AutoShuntCalResult(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoShuntCalResult_errorFlag")] public static extern int AutoShuntCalResult_errorFlag(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoShuntCalResult_slope")] public static extern float AutoShuntCalResult_slope(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoShuntCalResult_offset")] public static extern float AutoShuntCalResult_offset(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoShuntCalResult_baseMedian")] public static extern float AutoShuntCalResult_baseMedian(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoShuntCalResult_baseMin")] public static extern float AutoShuntCalResult_baseMin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoShuntCalResult_baseMax")] public static extern float AutoShuntCalResult_baseMax(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoShuntCalResult_shuntMedian")] public static extern float AutoShuntCalResult_shuntMedian(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoShuntCalResult_shuntMin")] public static extern float AutoShuntCalResult_shuntMin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoShuntCalResult_shuntMax")] public static extern float AutoShuntCalResult_shuntMax(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_PingResponse")] public static extern global::System.IntPtr new_PingResponse(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_PingResponse_success")] public static extern bool PingResponse_success(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_PingResponse_nodeRssi")] public static extern short PingResponse_nodeRssi(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_PingResponse_baseRssi")] public static extern short PingResponse_baseRssi(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_PingResponse")] public static extern void delete_PingResponse(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SetToIdleStatus_result")] public static extern int SetToIdleStatus_result(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SetToIdleStatus_complete__SWIG_0")] public static extern bool SetToIdleStatus_complete__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SetToIdleStatus_complete__SWIG_1")] public static extern bool SetToIdleStatus_complete__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SetToIdleStatus_cancel")] public static extern void SetToIdleStatus_cancel(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SetToIdleStatus")] public static extern void delete_SetToIdleStatus(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_NodeInfo")] public static extern global::System.IntPtr new_NodeInfo(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_NodeInfo")] public static extern void delete_NodeInfo(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessNode")] public static extern global::System.IntPtr new_WirelessNode(uint jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WirelessNode")] public static extern void delete_WirelessNode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_Mock__SWIG_0")] public static extern global::System.IntPtr WirelessNode_Mock__SWIG_0(uint jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_Mock__SWIG_1")] public static extern global::System.IntPtr WirelessNode_Mock__SWIG_1(uint jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_deviceName")] public static extern string WirelessNode_deviceName(uint jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_features")] public static extern global::System.IntPtr WirelessNode_features(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_lastCommunicationTime")] public static extern global::System.IntPtr WirelessNode_lastCommunicationTime(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_setBaseStation")] public static extern void WirelessNode_setBaseStation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getBaseStation")] public static extern global::System.IntPtr WirelessNode_getBaseStation(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_hasBaseStation")] public static extern bool WirelessNode_hasBaseStation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_useGroupRead")] public static extern void WirelessNode_useGroupRead(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_readWriteRetries__SWIG_0")] public static extern void WirelessNode_readWriteRetries__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_readWriteRetries__SWIG_1")] public static extern byte WirelessNode_readWriteRetries__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_useEepromCache")] public static extern void WirelessNode_useEepromCache(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_clearEepromCache")] public static extern void WirelessNode_clearEepromCache(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_updateEepromCacheFromNodeDiscovery")] public static extern void WirelessNode_updateEepromCacheFromNodeDiscovery(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getEepromCache")] public static extern global::System.IntPtr WirelessNode_getEepromCache(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_nodeAddress")] public static extern uint WirelessNode_nodeAddress(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_frequency")] public static extern int WirelessNode_frequency(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_communicationProtocol")] public static extern int WirelessNode_communicationProtocol(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_firmwareVersion")] public static extern global::System.IntPtr WirelessNode_firmwareVersion(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_model")] public static extern int WirelessNode_model(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_serial")] public static extern string WirelessNode_serial(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_name")] public static extern string WirelessNode_name(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_microcontroller")] public static extern int WirelessNode_microcontroller(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_radioFeatures")] public static extern global::System.IntPtr WirelessNode_radioFeatures(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_dataStorageSize")] public static extern ulong WirelessNode_dataStorageSize(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_regionCode")] public static extern int WirelessNode_regionCode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_ping")] public static extern global::System.IntPtr WirelessNode_ping(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_sleep")] public static extern bool WirelessNode_sleep(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_cyclePower")] public static extern void WirelessNode_cyclePower(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_resetRadio")] public static extern void WirelessNode_resetRadio(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_changeFrequency")] public static extern void WirelessNode_changeFrequency(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_setToIdle")] public static extern global::System.IntPtr WirelessNode_setToIdle(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_erase")] public static extern void WirelessNode_erase(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_startNonSyncSampling")] public static extern void WirelessNode_startNonSyncSampling(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_clearHistogram")] public static extern void WirelessNode_clearHistogram(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_autoBalance")] public static extern global::System.IntPtr WirelessNode_autoBalance(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_autoCal_shmLink")] public static extern global::System.IntPtr WirelessNode_autoCal_shmLink(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_autoCal_shmLink201")] public static extern global::System.IntPtr WirelessNode_autoCal_shmLink201(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_autoShuntCal")] public static extern global::System.IntPtr WirelessNode_autoShuntCal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_readEeprom")] public static extern ushort WirelessNode_readEeprom(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_writeEeprom")] public static extern void WirelessNode_writeEeprom(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getDiagnosticInfo")] public static extern global::System.IntPtr WirelessNode_getDiagnosticInfo(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_testCommunicationProtocol")] public static extern bool WirelessNode_testCommunicationProtocol(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_verifyConfig")] public static extern bool WirelessNode_verifyConfig(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_applyConfig")] public static extern void WirelessNode_applyConfig(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getNumDatalogSessions")] public static extern ushort WirelessNode_getNumDatalogSessions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_percentFull")] public static extern float WirelessNode_percentFull(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getDefaultMode")] public static extern int WirelessNode_getDefaultMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getInactivityTimeout")] public static extern ushort WirelessNode_getInactivityTimeout(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getCheckRadioInterval")] public static extern byte WirelessNode_getCheckRadioInterval(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getTransmitPower")] public static extern int WirelessNode_getTransmitPower(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getSamplingMode")] public static extern int WirelessNode_getSamplingMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getActiveChannels")] public static extern global::System.IntPtr WirelessNode_getActiveChannels(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getSampleRate")] public static extern int WirelessNode_getSampleRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getNumSweeps")] public static extern uint WirelessNode_getNumSweeps(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getUnlimitedDuration")] public static extern bool WirelessNode_getUnlimitedDuration(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getDataFormat")] public static extern int WirelessNode_getDataFormat(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getDataCollectionMethod")] public static extern int WirelessNode_getDataCollectionMethod(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getTimeBetweenBursts")] public static extern global::System.IntPtr WirelessNode_getTimeBetweenBursts(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getLostBeaconTimeout")] public static extern ushort WirelessNode_getLostBeaconTimeout(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getInputRange")] public static extern int WirelessNode_getInputRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getHardwareOffset")] public static extern ushort WirelessNode_getHardwareOffset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getAntiAliasingFilter")] public static extern int WirelessNode_getAntiAliasingFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getLowPassFilter")] public static extern int WirelessNode_getLowPassFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getHighPassFilter")] public static extern int WirelessNode_getHighPassFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getDebounceFilter")] public static extern ushort WirelessNode_getDebounceFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getPullUpResistor")] public static extern bool WirelessNode_getPullUpResistor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getSensorOutputMode")] public static extern int WirelessNode_getSensorOutputMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getGaugeFactor")] public static extern float WirelessNode_getGaugeFactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getExcitationVoltage")] public static extern int WirelessNode_getExcitationVoltage(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getAdcVoltageRef")] public static extern int WirelessNode_getAdcVoltageRef(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getGainAmplifierVoltageRef")] public static extern int WirelessNode_getGainAmplifierVoltageRef(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getGaugeResistance")] public static extern ushort WirelessNode_getGaugeResistance(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getNumActiveGauges")] public static extern ushort WirelessNode_getNumActiveGauges(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getLinearEquation")] public static extern global::System.IntPtr WirelessNode_getLinearEquation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getUnit")] public static extern int WirelessNode_getUnit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getEquationType")] public static extern int WirelessNode_getEquationType(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getFilterSettlingTime")] public static extern int WirelessNode_getFilterSettlingTime(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getThermocoupleType")] public static extern int WirelessNode_getThermocoupleType(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getTempSensorOptions")] public static extern global::System.IntPtr WirelessNode_getTempSensorOptions(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getFatigueOptions")] public static extern global::System.IntPtr WirelessNode_getFatigueOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getHistogramOptions")] public static extern global::System.IntPtr WirelessNode_getHistogramOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getActivitySense")] public static extern global::System.IntPtr WirelessNode_getActivitySense(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getEventTriggerOptions")] public static extern global::System.IntPtr WirelessNode_getEventTriggerOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getDiagnosticInterval")] public static extern ushort WirelessNode_getDiagnosticInterval(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getStorageLimitMode")] public static extern int WirelessNode_getStorageLimitMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getSensorDelay")] public static extern uint WirelessNode_getSensorDelay(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getDataMode")] public static extern int WirelessNode_getDataMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getDerivedDataRate")] public static extern int WirelessNode_getDerivedDataRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getDerivedChannelMask")] public static extern global::System.IntPtr WirelessNode_getDerivedChannelMask(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessNode_getDerivedVelocityUnit")] public static extern int WirelessNode_getDerivedVelocityUnit(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DatalogDownloader__SWIG_0")] public static extern global::System.IntPtr new_DatalogDownloader__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DatalogDownloader__SWIG_1")] public static extern global::System.IntPtr new_DatalogDownloader__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DatalogDownloader")] public static extern void delete_DatalogDownloader(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DatalogDownloader_complete")] public static extern bool DatalogDownloader_complete(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DatalogDownloader_percentComplete")] public static extern float DatalogDownloader_percentComplete(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DatalogDownloader_getNextData")] public static extern global::System.IntPtr DatalogDownloader_getNextData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DatalogDownloader_metaDataUpdated")] public static extern bool DatalogDownloader_metaDataUpdated(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DatalogDownloader_calCoefficientsUpdated")] public static extern bool DatalogDownloader_calCoefficientsUpdated(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DatalogDownloader_startOfSession")] public static extern bool DatalogDownloader_startOfSession(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DatalogDownloader_sessionIndex")] public static extern ushort DatalogDownloader_sessionIndex(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DatalogDownloader_sampleRate")] public static extern global::System.IntPtr DatalogDownloader_sampleRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DatalogDownloader_userString")] public static extern string DatalogDownloader_userString(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DatalogDownloader_calCoefficients")] public static extern global::System.IntPtr DatalogDownloader_calCoefficients(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ArmedDataloggingNetwork")] public static extern global::System.IntPtr new_ArmedDataloggingNetwork(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ArmedDataloggingNetwork_addNode__SWIG_0")] public static extern void ArmedDataloggingNetwork_addNode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ArmedDataloggingNetwork_addNode__SWIG_1")] public static extern void ArmedDataloggingNetwork_addNode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ArmedDataloggingNetwork_removeNode")] public static extern void ArmedDataloggingNetwork_removeNode(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ArmedDataloggingNetwork_startSampling")] public static extern void ArmedDataloggingNetwork_startSampling(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ArmedDataloggingNetwork")] public static extern void delete_ArmedDataloggingNetwork(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SyncNetworkInfo")] public static extern global::System.IntPtr new_SyncNetworkInfo(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncNetworkInfo_status")] public static extern int SyncNetworkInfo_status(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncNetworkInfo_configurationApplied")] public static extern bool SyncNetworkInfo_configurationApplied(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncNetworkInfo_percentBandwidth")] public static extern float SyncNetworkInfo_percentBandwidth(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncNetworkInfo_tdmaAddress")] public static extern uint SyncNetworkInfo_tdmaAddress(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncNetworkInfo_maxTdmaAddress")] public static extern uint SyncNetworkInfo_maxTdmaAddress(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncNetworkInfo_transmissionPerGroup")] public static extern uint SyncNetworkInfo_transmissionPerGroup(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncNetworkInfo_groupSize")] public static extern uint SyncNetworkInfo_groupSize(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SyncNetworkInfo")] public static extern void delete_SyncNetworkInfo(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SyncSamplingNetwork")] public static extern global::System.IntPtr new_SyncSamplingNetwork(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_addNode__SWIG_0")] public static extern void SyncSamplingNetwork_addNode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_addNode__SWIG_1")] public static extern void SyncSamplingNetwork_addNode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_removeNode")] public static extern void SyncSamplingNetwork_removeNode(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_percentBandwidth")] public static extern float SyncSamplingNetwork_percentBandwidth(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_ok")] public static extern bool SyncSamplingNetwork_ok(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_refresh")] public static extern void SyncSamplingNetwork_refresh(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_lossless__SWIG_0")] public static extern bool SyncSamplingNetwork_lossless__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_lossless__SWIG_1")] public static extern void SyncSamplingNetwork_lossless__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_communicationProtocol__SWIG_0")] public static extern int SyncSamplingNetwork_communicationProtocol__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_communicationProtocol__SWIG_1")] public static extern void SyncSamplingNetwork_communicationProtocol__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_applyConfiguration")] public static extern void SyncSamplingNetwork_applyConfiguration(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_startSampling__SWIG_0")] public static extern void SyncSamplingNetwork_startSampling__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_startSampling__SWIG_1")] public static extern void SyncSamplingNetwork_startSampling__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_startSampling_noBeacon")] public static extern void SyncSamplingNetwork_startSampling_noBeacon(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SyncSamplingNetwork_getNodeNetworkInfo")] public static extern global::System.IntPtr SyncSamplingNetwork_getNodeNetworkInfo(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SyncSamplingNetwork")] public static extern void delete_SyncSamplingNetwork(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_NodeFeatures")] public static extern void delete_NodeFeatures(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_normalizeNumSweeps")] public static extern uint NodeFeatures_normalizeNumSweeps(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_normalizeTimeBetweenBursts")] public static extern global::System.IntPtr NodeFeatures_normalizeTimeBetweenBursts(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_channels")] public static extern global::System.IntPtr NodeFeatures_channels(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_channelGroups")] public static extern global::System.IntPtr NodeFeatures_channelGroups(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_channelType")] public static extern int NodeFeatures_channelType(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsChannelSetting")] public static extern bool NodeFeatures_supportsChannelSetting(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsInputRange__SWIG_0")] public static extern bool NodeFeatures_supportsInputRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsInputRangePerExcitationVoltage")] public static extern bool NodeFeatures_supportsInputRangePerExcitationVoltage(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsHardwareOffset")] public static extern bool NodeFeatures_supportsHardwareOffset(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsAntiAliasingFilter")] public static extern bool NodeFeatures_supportsAntiAliasingFilter(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsLowPassFilter")] public static extern bool NodeFeatures_supportsLowPassFilter(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsHighPassFilter")] public static extern bool NodeFeatures_supportsHighPassFilter(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsGaugeFactor")] public static extern bool NodeFeatures_supportsGaugeFactor(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsGaugeResistance")] public static extern bool NodeFeatures_supportsGaugeResistance(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsNumActiveGauges")] public static extern bool NodeFeatures_supportsNumActiveGauges(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsLostBeaconTimeout")] public static extern bool NodeFeatures_supportsLostBeaconTimeout(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsPullUpResistor")] public static extern bool NodeFeatures_supportsPullUpResistor(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsFilterSettlingTime")] public static extern bool NodeFeatures_supportsFilterSettlingTime(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsThermocoupleType")] public static extern bool NodeFeatures_supportsThermocoupleType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsTempSensorOptions")] public static extern bool NodeFeatures_supportsTempSensorOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsDebounceFilter")] public static extern bool NodeFeatures_supportsDebounceFilter(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsFatigueConfig")] public static extern bool NodeFeatures_supportsFatigueConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsYoungsModConfig")] public static extern bool NodeFeatures_supportsYoungsModConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsPoissonsRatioConfig")] public static extern bool NodeFeatures_supportsPoissonsRatioConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsFatigueDebugModeConfig")] public static extern bool NodeFeatures_supportsFatigueDebugModeConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsFatigueModeConfig")] public static extern bool NodeFeatures_supportsFatigueModeConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsHistogramConfig")] public static extern bool NodeFeatures_supportsHistogramConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsHistogramRateConfig")] public static extern bool NodeFeatures_supportsHistogramRateConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsHistogramEnableConfig")] public static extern bool NodeFeatures_supportsHistogramEnableConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsActivitySense")] public static extern bool NodeFeatures_supportsActivitySense(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsAutoBalance")] public static extern bool NodeFeatures_supportsAutoBalance(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsLegacyShuntCal")] public static extern bool NodeFeatures_supportsLegacyShuntCal(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsAutoCal_shm")] public static extern bool NodeFeatures_supportsAutoCal_shm(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsAutoCal_shm201")] public static extern bool NodeFeatures_supportsAutoCal_shm201(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsAutoShuntCal")] public static extern bool NodeFeatures_supportsAutoShuntCal(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsLimitedDuration")] public static extern bool NodeFeatures_supportsLimitedDuration(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsEventTrigger")] public static extern bool NodeFeatures_supportsEventTrigger(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsDiagnosticInfo")] public static extern bool NodeFeatures_supportsDiagnosticInfo(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsLoggedData")] public static extern bool NodeFeatures_supportsLoggedData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsSensorDelayConfig")] public static extern bool NodeFeatures_supportsSensorDelayConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsSensorDelayAlwaysOn")] public static extern bool NodeFeatures_supportsSensorDelayAlwaysOn(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsSensorOutputMode")] public static extern bool NodeFeatures_supportsSensorOutputMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsChannel")] public static extern bool NodeFeatures_supportsChannel(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsSamplingMode")] public static extern bool NodeFeatures_supportsSamplingMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsSampleRate")] public static extern bool NodeFeatures_supportsSampleRate(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsCommunicationProtocol")] public static extern bool NodeFeatures_supportsCommunicationProtocol(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsDataFormat")] public static extern bool NodeFeatures_supportsDataFormat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsDefaultMode")] public static extern bool NodeFeatures_supportsDefaultMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsDataCollectionMethod")] public static extern bool NodeFeatures_supportsDataCollectionMethod(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsTransmitPower")] public static extern bool NodeFeatures_supportsTransmitPower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsDataMode")] public static extern bool NodeFeatures_supportsDataMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsFatigueMode")] public static extern bool NodeFeatures_supportsFatigueMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsInputRange__SWIG_1")] public static extern bool NodeFeatures_supportsInputRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsInputRange__SWIG_2")] public static extern bool NodeFeatures_supportsInputRange__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsCentisecondEventDuration")] public static extern bool NodeFeatures_supportsCentisecondEventDuration(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsGetDiagnosticInfo")] public static extern bool NodeFeatures_supportsGetDiagnosticInfo(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsNonSyncLogWithTimestamps")] public static extern bool NodeFeatures_supportsNonSyncLogWithTimestamps(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsDerivedCategory")] public static extern bool NodeFeatures_supportsDerivedCategory(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsRawDataMode")] public static extern bool NodeFeatures_supportsRawDataMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsDerivedDataMode")] public static extern bool NodeFeatures_supportsDerivedDataMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsDerivedVelocityUnitConfig")] public static extern bool NodeFeatures_supportsDerivedVelocityUnitConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_supportsExcitationVoltageConfig")] public static extern bool NodeFeatures_supportsExcitationVoltageConfig(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxSampleRate")] public static extern int NodeFeatures_maxSampleRate(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxSampleRateForSettlingTime")] public static extern int NodeFeatures_maxSampleRateForSettlingTime(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxSampleRateForLowPassFilter")] public static extern int NodeFeatures_maxSampleRateForLowPassFilter(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxFilterSettlingTime")] public static extern int NodeFeatures_maxFilterSettlingTime(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_minLowPassFilter")] public static extern int NodeFeatures_minLowPassFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_minInactivityTimeout")] public static extern ushort NodeFeatures_minInactivityTimeout(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_minLostBeaconTimeout")] public static extern ushort NodeFeatures_minLostBeaconTimeout(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxLostBeaconTimeout")] public static extern ushort NodeFeatures_maxLostBeaconTimeout(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_minCheckRadioInterval")] public static extern byte NodeFeatures_minCheckRadioInterval(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxCheckRadioInterval")] public static extern byte NodeFeatures_maxCheckRadioInterval(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_minSweeps")] public static extern uint NodeFeatures_minSweeps(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxSweeps")] public static extern uint NodeFeatures_maxSweeps(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxSweepsPerBurst")] public static extern uint NodeFeatures_maxSweepsPerBurst(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_minTimeBetweenBursts")] public static extern global::System.IntPtr NodeFeatures_minTimeBetweenBursts(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, uint jarg7, int jarg8); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_minSensorDelay")] public static extern uint NodeFeatures_minSensorDelay(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxSensorDelay")] public static extern uint NodeFeatures_maxSensorDelay(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxEventTriggerTotalDuration")] public static extern uint NodeFeatures_maxEventTriggerTotalDuration(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_normalizeEventDuration")] public static extern uint NodeFeatures_normalizeEventDuration(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_normalizeSensorDelay")] public static extern uint NodeFeatures_normalizeSensorDelay(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_numDamageAngles")] public static extern byte NodeFeatures_numDamageAngles(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_numSnCurveSegments")] public static extern byte NodeFeatures_numSnCurveSegments(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_numEventTriggers")] public static extern byte NodeFeatures_numEventTriggers(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_defaultModes")] public static extern global::System.IntPtr NodeFeatures_defaultModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_dataCollectionMethods")] public static extern global::System.IntPtr NodeFeatures_dataCollectionMethods(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_dataFormats")] public static extern global::System.IntPtr NodeFeatures_dataFormats(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_samplingModes")] public static extern global::System.IntPtr NodeFeatures_samplingModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_sampleRates")] public static extern global::System.IntPtr NodeFeatures_sampleRates(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_derivedDataRates")] public static extern global::System.IntPtr NodeFeatures_derivedDataRates(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_transmitPowers")] public static extern global::System.IntPtr NodeFeatures_transmitPowers(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_commProtocols")] public static extern global::System.IntPtr NodeFeatures_commProtocols(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_sensorOutputModes")] public static extern global::System.IntPtr NodeFeatures_sensorOutputModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_histogramTransmitRates")] public static extern global::System.IntPtr NodeFeatures_histogramTransmitRates(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_fatigueModes")] public static extern global::System.IntPtr NodeFeatures_fatigueModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_antiAliasingFilters")] public static extern global::System.IntPtr NodeFeatures_antiAliasingFilters(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_lowPassFilters")] public static extern global::System.IntPtr NodeFeatures_lowPassFilters(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_highPassFilters")] public static extern global::System.IntPtr NodeFeatures_highPassFilters(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_storageLimitModes")] public static extern global::System.IntPtr NodeFeatures_storageLimitModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_inputRanges__SWIG_0")] public static extern global::System.IntPtr NodeFeatures_inputRanges__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_inputRanges__SWIG_1")] public static extern global::System.IntPtr NodeFeatures_inputRanges__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_dataModes")] public static extern global::System.IntPtr NodeFeatures_dataModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_channelsPerDerivedCategory")] public static extern global::System.IntPtr NodeFeatures_channelsPerDerivedCategory(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_excitationVoltages")] public static extern global::System.IntPtr NodeFeatures_excitationVoltages(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_adcVoltageInputType")] public static extern int NodeFeatures_adcVoltageInputType(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_maxTransmitPower")] public static extern int NodeFeatures_maxTransmitPower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeFeatures_minTransmitPower")] public static extern int NodeFeatures_minTransmitPower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_BaseStationFeatures")] public static extern void delete_BaseStationFeatures(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_supportsTransmitPower")] public static extern bool BaseStationFeatures_supportsTransmitPower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_supportsCommunicationProtocol")] public static extern bool BaseStationFeatures_supportsCommunicationProtocol(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_supportsButtons")] public static extern bool BaseStationFeatures_supportsButtons(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_supportsAnalogPairing")] public static extern bool BaseStationFeatures_supportsAnalogPairing(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_supportsBeaconStatus")] public static extern bool BaseStationFeatures_supportsBeaconStatus(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_supportsRfSweepMode")] public static extern bool BaseStationFeatures_supportsRfSweepMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_supportsCustomRfSweepMode")] public static extern bool BaseStationFeatures_supportsCustomRfSweepMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_buttonCount")] public static extern byte BaseStationFeatures_buttonCount(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_analogPortCount")] public static extern byte BaseStationFeatures_analogPortCount(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_transmitPowers")] public static extern global::System.IntPtr BaseStationFeatures_transmitPowers(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_commProtocols")] public static extern global::System.IntPtr BaseStationFeatures_commProtocols(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_maxTransmitPower")] public static extern int BaseStationFeatures_maxTransmitPower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_BaseStationFeatures_minTransmitPower")] public static extern int BaseStationFeatures_minTransmitPower(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_InertialTypes")] public static extern global::System.IntPtr new_InertialTypes(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_InertialTypes")] public static extern void delete_InertialTypes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Matrix_3x3__SWIG_0")] public static extern global::System.IntPtr new_Matrix_3x3__SWIG_0(float jarg1, float jarg2, float jarg3, float jarg4, float jarg5, float jarg6, float jarg7, float jarg8, float jarg9); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Matrix_3x3__SWIG_1")] public static extern global::System.IntPtr new_Matrix_3x3__SWIG_1(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Matrix_3x3")] public static extern void delete_Matrix_3x3(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Matrix_3x3_set")] public static extern void Matrix_3x3_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, byte jarg3, float jarg4); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Matrix_3x3_at")] public static extern float Matrix_3x3_at(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, byte jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_GeometricVector__SWIG_0")] public static extern global::System.IntPtr new_GeometricVector__SWIG_0(float jarg1, float jarg2, float jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_GeometricVector__SWIG_1")] public static extern global::System.IntPtr new_GeometricVector__SWIG_1(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_GeometricVector")] public static extern void delete_GeometricVector(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_GeometricVector_x_set")] public static extern void GeometricVector_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_GeometricVector_x_get")] public static extern float GeometricVector_x_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_GeometricVector_y_set")] public static extern void GeometricVector_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_GeometricVector_y_get")] public static extern float GeometricVector_y_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_GeometricVector_z_set")] public static extern void GeometricVector_z_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_GeometricVector_z_get")] public static extern float GeometricVector_z_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_TimeUpdate__SWIG_0")] public static extern global::System.IntPtr new_TimeUpdate__SWIG_0(double jarg1, ushort jarg2, float jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_TimeUpdate__SWIG_1")] public static extern global::System.IntPtr new_TimeUpdate__SWIG_1(double jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_TimeUpdate")] public static extern void delete_TimeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeUpdate_timeOfWeek")] public static extern double TimeUpdate_timeOfWeek(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeUpdate_weekNumber")] public static extern ushort TimeUpdate_weekNumber(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TimeUpdate_timeAccuracy")] public static extern float TimeUpdate_timeAccuracy(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ZUPTSettingsData")] public static extern global::System.IntPtr new_ZUPTSettingsData(bool jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ZUPTSettingsData_enabled_set")] public static extern void ZUPTSettingsData_enabled_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ZUPTSettingsData_enabled_get")] public static extern bool ZUPTSettingsData_enabled_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ZUPTSettingsData_threshold_set")] public static extern void ZUPTSettingsData_threshold_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ZUPTSettingsData_threshold_get")] public static extern float ZUPTSettingsData_threshold_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ZUPTSettingsData")] public static extern void delete_ZUPTSettingsData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SBASSettingsData_enableSBAS_set")] public static extern void SBASSettingsData_enableSBAS_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SBASSettingsData_enableSBAS_get")] public static extern bool SBASSettingsData_enableSBAS_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SBASSettingsData_enableRanging_set")] public static extern void SBASSettingsData_enableRanging_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SBASSettingsData_enableRanging_get")] public static extern bool SBASSettingsData_enableRanging_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SBASSettingsData_enableCorrectionData_set")] public static extern void SBASSettingsData_enableCorrectionData_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SBASSettingsData_enableCorrectionData_get")] public static extern bool SBASSettingsData_enableCorrectionData_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SBASSettingsData_applyIntegrityInfo_set")] public static extern void SBASSettingsData_applyIntegrityInfo_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SBASSettingsData_applyIntegrityInfo_get")] public static extern bool SBASSettingsData_applyIntegrityInfo_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SBASSettingsData_satellitePRNs_set")] public static extern void SBASSettingsData_satellitePRNs_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SBASSettingsData_satellitePRNs_get")] public static extern global::System.IntPtr SBASSettingsData_satellitePRNs_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SBASSettingsData")] public static extern global::System.IntPtr new_SBASSettingsData(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SBASSettingsData")] public static extern void delete_SBASSettingsData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellation_constellationID_set")] public static extern void Constellation_constellationID_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellation_constellationID_get")] public static extern byte Constellation_constellationID_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellation_enabled_set")] public static extern void Constellation_enabled_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellation_enabled_get")] public static extern bool Constellation_enabled_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellation_reservedChannelCount_set")] public static extern void Constellation_reservedChannelCount_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellation_reservedChannelCount_get")] public static extern byte Constellation_reservedChannelCount_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellation_maxChannels_set")] public static extern void Constellation_maxChannels_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellation_maxChannels_get")] public static extern byte Constellation_maxChannels_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellation_enableL1SAIF_set")] public static extern void Constellation_enableL1SAIF_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellation_enableL1SAIF_get")] public static extern bool Constellation_enableL1SAIF_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Constellation")] public static extern global::System.IntPtr new_Constellation(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Constellation")] public static extern void delete_Constellation(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConstellationSettingsData_maxChannelsAvailable_set")] public static extern void ConstellationSettingsData_maxChannelsAvailable_set(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConstellationSettingsData_maxChannelsAvailable_get")] public static extern ushort ConstellationSettingsData_maxChannelsAvailable_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConstellationSettingsData_maxChannelsToUse_set")] public static extern void ConstellationSettingsData_maxChannelsToUse_set(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConstellationSettingsData_maxChannelsToUse_get")] public static extern ushort ConstellationSettingsData_maxChannelsToUse_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConstellationSettingsData_constellations_set")] public static extern void ConstellationSettingsData_constellations_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConstellationSettingsData_constellations_get")] public static extern global::System.IntPtr ConstellationSettingsData_constellations_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConstellationSettingsData")] public static extern global::System.IntPtr new_ConstellationSettingsData(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ConstellationSettingsData")] public static extern void delete_ConstellationSettingsData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_AdvancedLowPassFilterData")] public static extern global::System.IntPtr new_AdvancedLowPassFilterData(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdvancedLowPassFilterData_dataDescriptor_set")] public static extern void AdvancedLowPassFilterData_dataDescriptor_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdvancedLowPassFilterData_dataDescriptor_get")] public static extern int AdvancedLowPassFilterData_dataDescriptor_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdvancedLowPassFilterData_manualFilterBandwidthConfig_set")] public static extern void AdvancedLowPassFilterData_manualFilterBandwidthConfig_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdvancedLowPassFilterData_manualFilterBandwidthConfig_get")] public static extern int AdvancedLowPassFilterData_manualFilterBandwidthConfig_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdvancedLowPassFilterData_applyLowPassFilter_set")] public static extern void AdvancedLowPassFilterData_applyLowPassFilter_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdvancedLowPassFilterData_applyLowPassFilter_get")] public static extern bool AdvancedLowPassFilterData_applyLowPassFilter_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdvancedLowPassFilterData_cutoffFrequency_set")] public static extern void AdvancedLowPassFilterData_cutoffFrequency_set(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdvancedLowPassFilterData_cutoffFrequency_get")] public static extern ushort AdvancedLowPassFilterData_cutoffFrequency_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_AdvancedLowPassFilterData")] public static extern void delete_AdvancedLowPassFilterData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ComplementaryFilterData")] public static extern global::System.IntPtr new_ComplementaryFilterData(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ComplementaryFilterData_upCompensationEnabled_set")] public static extern void ComplementaryFilterData_upCompensationEnabled_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ComplementaryFilterData_upCompensationEnabled_get")] public static extern bool ComplementaryFilterData_upCompensationEnabled_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ComplementaryFilterData_upCompensationTimeInSeconds_set")] public static extern void ComplementaryFilterData_upCompensationTimeInSeconds_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ComplementaryFilterData_upCompensationTimeInSeconds_get")] public static extern float ComplementaryFilterData_upCompensationTimeInSeconds_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ComplementaryFilterData_northCompensationEnabled_set")] public static extern void ComplementaryFilterData_northCompensationEnabled_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ComplementaryFilterData_northCompensationEnabled_get")] public static extern bool ComplementaryFilterData_northCompensationEnabled_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ComplementaryFilterData_northCompensationTimeInSeconds_set")] public static extern void ComplementaryFilterData_northCompensationTimeInSeconds_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ComplementaryFilterData_northCompensationTimeInSeconds_get")] public static extern float ComplementaryFilterData_northCompensationTimeInSeconds_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ComplementaryFilterData")] public static extern void delete_ComplementaryFilterData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DeviceStatusData")] public static extern global::System.IntPtr new_DeviceStatusData(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_systemState_set")] public static extern void DeviceStatusData_systemState_set(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_systemState_get")] public static extern ushort DeviceStatusData_systemState_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_systemTimerInMS_set")] public static extern void DeviceStatusData_systemTimerInMS_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_systemTimerInMS_get")] public static extern uint DeviceStatusData_systemTimerInMS_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_gnssPowerStateOn_set")] public static extern void DeviceStatusData_gnssPowerStateOn_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_gnssPowerStateOn_get")] public static extern bool DeviceStatusData_gnssPowerStateOn_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numberof1PPSPulses_set")] public static extern void DeviceStatusData_numberof1PPSPulses_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numberof1PPSPulses_get")] public static extern uint DeviceStatusData_numberof1PPSPulses_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_last1PPSInMS_set")] public static extern void DeviceStatusData_last1PPSInMS_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_last1PPSInMS_get")] public static extern uint DeviceStatusData_last1PPSInMS_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_imuStreamIsEnabled_set")] public static extern void DeviceStatusData_imuStreamIsEnabled_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_imuStreamIsEnabled_get")] public static extern bool DeviceStatusData_imuStreamIsEnabled_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_gnssStreamIsEnabled_set")] public static extern void DeviceStatusData_gnssStreamIsEnabled_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_gnssStreamIsEnabled_get")] public static extern bool DeviceStatusData_gnssStreamIsEnabled_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_estimationFilterStreamIsEnabled_set")] public static extern void DeviceStatusData_estimationFilterStreamIsEnabled_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_estimationFilterStreamIsEnabled_get")] public static extern bool DeviceStatusData_estimationFilterStreamIsEnabled_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_outgoingIMUDroppedPacketCount_set")] public static extern void DeviceStatusData_outgoingIMUDroppedPacketCount_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_outgoingIMUDroppedPacketCount_get")] public static extern uint DeviceStatusData_outgoingIMUDroppedPacketCount_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_outgoingGnssDroppedPacketCount_set")] public static extern void DeviceStatusData_outgoingGnssDroppedPacketCount_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_outgoingGnssDroppedPacketCount_get")] public static extern uint DeviceStatusData_outgoingGnssDroppedPacketCount_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_outgoingEstimationFilterDroppedPacketCount_set")] public static extern void DeviceStatusData_outgoingEstimationFilterDroppedPacketCount_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_outgoingEstimationFilterDroppedPacketCount_get")] public static extern uint DeviceStatusData_outgoingEstimationFilterDroppedPacketCount_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numOfBytesWrittenToComPort_set")] public static extern void DeviceStatusData_numOfBytesWrittenToComPort_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numOfBytesWrittenToComPort_get")] public static extern uint DeviceStatusData_numOfBytesWrittenToComPort_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numOfBytesWrittenFromComPort_set")] public static extern void DeviceStatusData_numOfBytesWrittenFromComPort_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numOfBytesWrittenFromComPort_get")] public static extern uint DeviceStatusData_numOfBytesWrittenFromComPort_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numOfOverrunsOnWriteToComPort_set")] public static extern void DeviceStatusData_numOfOverrunsOnWriteToComPort_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numOfOverrunsOnWriteToComPort_get")] public static extern uint DeviceStatusData_numOfOverrunsOnWriteToComPort_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numOfIMUParsingErrors_set")] public static extern void DeviceStatusData_numOfIMUParsingErrors_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numOfIMUParsingErrors_get")] public static extern uint DeviceStatusData_numOfIMUParsingErrors_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_totalIMUMessagesRead_set")] public static extern void DeviceStatusData_totalIMUMessagesRead_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_totalIMUMessagesRead_get")] public static extern uint DeviceStatusData_totalIMUMessagesRead_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_lastIMUMessageReadInMS_set")] public static extern void DeviceStatusData_lastIMUMessageReadInMS_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_lastIMUMessageReadInMS_get")] public static extern uint DeviceStatusData_lastIMUMessageReadInMS_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numOfGnssParsingErrors_set")] public static extern void DeviceStatusData_numOfGnssParsingErrors_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_numOfGnssParsingErrors_get")] public static extern uint DeviceStatusData_numOfGnssParsingErrors_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_totalGnssMessagesRead_set")] public static extern void DeviceStatusData_totalGnssMessagesRead_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_totalGnssMessagesRead_get")] public static extern uint DeviceStatusData_totalGnssMessagesRead_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_lastGnssMessageReadInMS_set")] public static extern void DeviceStatusData_lastGnssMessageReadInMS_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceStatusData_lastGnssMessageReadInMS_get")] public static extern uint DeviceStatusData_lastGnssMessageReadInMS_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DeviceStatusData")] public static extern void delete_DeviceStatusData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_gpsTimeOfWeek_set")] public static extern void ExternalGNSSUpdateData_gpsTimeOfWeek_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_gpsTimeOfWeek_get")] public static extern double ExternalGNSSUpdateData_gpsTimeOfWeek_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_gpsWeekNumber_set")] public static extern void ExternalGNSSUpdateData_gpsWeekNumber_set(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_gpsWeekNumber_get")] public static extern ushort ExternalGNSSUpdateData_gpsWeekNumber_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_lattitude_set")] public static extern void ExternalGNSSUpdateData_lattitude_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_lattitude_get")] public static extern double ExternalGNSSUpdateData_lattitude_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_longitude_set")] public static extern void ExternalGNSSUpdateData_longitude_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_longitude_get")] public static extern double ExternalGNSSUpdateData_longitude_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set")] public static extern void ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get")] public static extern double ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_northVelocity_set")] public static extern void ExternalGNSSUpdateData_northVelocity_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_northVelocity_get")] public static extern float ExternalGNSSUpdateData_northVelocity_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_eastVelocity_set")] public static extern void ExternalGNSSUpdateData_eastVelocity_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_eastVelocity_get")] public static extern float ExternalGNSSUpdateData_eastVelocity_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_downVelocity_set")] public static extern void ExternalGNSSUpdateData_downVelocity_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_downVelocity_get")] public static extern float ExternalGNSSUpdateData_downVelocity_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_northPositionUncertainty_set")] public static extern void ExternalGNSSUpdateData_northPositionUncertainty_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_northPositionUncertainty_get")] public static extern float ExternalGNSSUpdateData_northPositionUncertainty_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_eastPositionUncertainty_set")] public static extern void ExternalGNSSUpdateData_eastPositionUncertainty_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_eastPositionUncertainty_get")] public static extern float ExternalGNSSUpdateData_eastPositionUncertainty_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_downPositionUncertainty_set")] public static extern void ExternalGNSSUpdateData_downPositionUncertainty_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_downPositionUncertainty_get")] public static extern float ExternalGNSSUpdateData_downPositionUncertainty_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_northVelocityUncertainty_set")] public static extern void ExternalGNSSUpdateData_northVelocityUncertainty_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_northVelocityUncertainty_get")] public static extern float ExternalGNSSUpdateData_northVelocityUncertainty_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_eastVelocityUncertainty_set")] public static extern void ExternalGNSSUpdateData_eastVelocityUncertainty_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_eastVelocityUncertainty_get")] public static extern float ExternalGNSSUpdateData_eastVelocityUncertainty_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_downVelocityUncertainty_set")] public static extern void ExternalGNSSUpdateData_downVelocityUncertainty_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ExternalGNSSUpdateData_downVelocityUncertainty_get")] public static extern float ExternalGNSSUpdateData_downVelocityUncertainty_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ExternalGNSSUpdateData")] public static extern global::System.IntPtr new_ExternalGNSSUpdateData(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ExternalGNSSUpdateData")] public static extern void delete_ExternalGNSSUpdateData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptions_AsOptionId")] public static extern int HeadingUpdateOptions_AsOptionId(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_HeadingUpdateOptions__SWIG_0")] public static extern global::System.IntPtr new_HeadingUpdateOptions__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_HeadingUpdateOptions__SWIG_1")] public static extern global::System.IntPtr new_HeadingUpdateOptions__SWIG_1(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptions_useInternalMagnetometer_set")] public static extern void HeadingUpdateOptions_useInternalMagnetometer_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptions_useInternalMagnetometer_get")] public static extern bool HeadingUpdateOptions_useInternalMagnetometer_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptions_useInternalGNSSVelocityVector_set")] public static extern void HeadingUpdateOptions_useInternalGNSSVelocityVector_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptions_useInternalGNSSVelocityVector_get")] public static extern bool HeadingUpdateOptions_useInternalGNSSVelocityVector_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptions_useExternalHeadingMessages_set")] public static extern void HeadingUpdateOptions_useExternalHeadingMessages_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptions_useExternalHeadingMessages_get")] public static extern bool HeadingUpdateOptions_useExternalHeadingMessages_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_HeadingUpdateOptions")] public static extern void delete_HeadingUpdateOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_GeographicSourceOptions__SWIG_0")] public static extern global::System.IntPtr new_GeographicSourceOptions__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_GeographicSourceOptions__SWIG_1")] public static extern global::System.IntPtr new_GeographicSourceOptions__SWIG_1(int jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_GeographicSourceOptions_source_set")] public static extern void GeographicSourceOptions_source_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_GeographicSourceOptions_source_get")] public static extern int GeographicSourceOptions_source_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_GeographicSourceOptions__fixed_set")] public static extern void GeographicSourceOptions__fixed_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_GeographicSourceOptions__fixed_get")] public static extern float GeographicSourceOptions__fixed_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_GeographicSourceOptions")] public static extern void delete_GeographicSourceOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_AsUint16")] public static extern ushort EstimationControlOptions_AsUint16(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_EstimationControlOptions__SWIG_0")] public static extern global::System.IntPtr new_EstimationControlOptions__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_EstimationControlOptions__SWIG_1")] public static extern global::System.IntPtr new_EstimationControlOptions__SWIG_1(ushort jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableGyroBiasEstimation_set")] public static extern void EstimationControlOptions_enableGyroBiasEstimation_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableGyroBiasEstimation_get")] public static extern bool EstimationControlOptions_enableGyroBiasEstimation_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableAccelBiasEstimation_set")] public static extern void EstimationControlOptions_enableAccelBiasEstimation_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableAccelBiasEstimation_get")] public static extern bool EstimationControlOptions_enableAccelBiasEstimation_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableGyroScaleFactorEstimation_set")] public static extern void EstimationControlOptions_enableGyroScaleFactorEstimation_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableGyroScaleFactorEstimation_get")] public static extern bool EstimationControlOptions_enableGyroScaleFactorEstimation_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableAccelScaleFactorEstimation_set")] public static extern void EstimationControlOptions_enableAccelScaleFactorEstimation_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableAccelScaleFactorEstimation_get")] public static extern bool EstimationControlOptions_enableAccelScaleFactorEstimation_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set")] public static extern void EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get")] public static extern bool EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableHardIronAutoCalibration_set")] public static extern void EstimationControlOptions_enableHardIronAutoCalibration_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableHardIronAutoCalibration_get")] public static extern bool EstimationControlOptions_enableHardIronAutoCalibration_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableSoftIronAutoCalibration_set")] public static extern void EstimationControlOptions_enableSoftIronAutoCalibration_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EstimationControlOptions_enableSoftIronAutoCalibration_get")] public static extern bool EstimationControlOptions_enableSoftIronAutoCalibration_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_EstimationControlOptions")] public static extern void delete_EstimationControlOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_HeadingData")] public static extern global::System.IntPtr new_HeadingData(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingData_heading_set")] public static extern void HeadingData_heading_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingData_heading_get")] public static extern int HeadingData_heading_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingData_headingAngle_set")] public static extern void HeadingData_headingAngle_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingData_headingAngle_get")] public static extern float HeadingData_headingAngle_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingData_headingAngleUncertainty_set")] public static extern void HeadingData_headingAngleUncertainty_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingData_headingAngleUncertainty_get")] public static extern float HeadingData_headingAngleUncertainty_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_HeadingData")] public static extern void delete_HeadingData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_AdaptiveMeasurementData")] public static extern global::System.IntPtr new_AdaptiveMeasurementData(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_mode_set")] public static extern void AdaptiveMeasurementData_mode_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_mode_get")] public static extern int AdaptiveMeasurementData_mode_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_lowPassFilterCutoff_set")] public static extern void AdaptiveMeasurementData_lowPassFilterCutoff_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_lowPassFilterCutoff_get")] public static extern float AdaptiveMeasurementData_lowPassFilterCutoff_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_lowLimit_set")] public static extern void AdaptiveMeasurementData_lowLimit_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_lowLimit_get")] public static extern float AdaptiveMeasurementData_lowLimit_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_highLimit_set")] public static extern void AdaptiveMeasurementData_highLimit_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_highLimit_get")] public static extern float AdaptiveMeasurementData_highLimit_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_lowLimitUncertainty_set")] public static extern void AdaptiveMeasurementData_lowLimitUncertainty_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_lowLimitUncertainty_get")] public static extern float AdaptiveMeasurementData_lowLimitUncertainty_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_highLimitUncertainty_set")] public static extern void AdaptiveMeasurementData_highLimitUncertainty_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_highLimitUncertainty_get")] public static extern float AdaptiveMeasurementData_highLimitUncertainty_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_minUncertainty_set")] public static extern void AdaptiveMeasurementData_minUncertainty_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementData_minUncertainty_get")] public static extern float AdaptiveMeasurementData_minUncertainty_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_AdaptiveMeasurementData")] public static extern void delete_AdaptiveMeasurementData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_EulerAngles__SWIG_0")] public static extern global::System.IntPtr new_EulerAngles__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_EulerAngles__SWIG_1")] public static extern global::System.IntPtr new_EulerAngles__SWIG_1(float jarg1, float jarg2, float jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EulerAngles_roll")] public static extern float EulerAngles_roll(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EulerAngles_pitch")] public static extern float EulerAngles_pitch(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EulerAngles_yaw")] public static extern float EulerAngles_yaw(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_EulerAngles")] public static extern void delete_EulerAngles(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_PositionOffset__SWIG_0")] public static extern global::System.IntPtr new_PositionOffset__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_PositionOffset__SWIG_1")] public static extern global::System.IntPtr new_PositionOffset__SWIG_1(float jarg1, float jarg2, float jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_PositionOffset_x")] public static extern float PositionOffset_x(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_PositionOffset_y")] public static extern float PositionOffset_y(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_PositionOffset_z")] public static extern float PositionOffset_z(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_PositionOffset")] public static extern void delete_PositionOffset(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_InertialModels")] public static extern global::System.IntPtr new_InertialModels(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_InertialModels")] public static extern void delete_InertialModels(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DisplacementModels")] public static extern global::System.IntPtr new_DisplacementModels(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DisplacementModels")] public static extern void delete_DisplacementModels(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipTypes_channelName")] public static extern string MipTypes_channelName(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipTypes")] public static extern global::System.IntPtr new_MipTypes(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipTypes")] public static extern void delete_MipTypes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipChannel__SWIG_0")] public static extern global::System.IntPtr new_MipChannel__SWIG_0(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipChannel__SWIG_1")] public static extern global::System.IntPtr new_MipChannel__SWIG_1(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannel_channelField")] public static extern int MipChannel_channelField(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannel_sampleRate")] public static extern global::System.IntPtr MipChannel_sampleRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannel_rateDecimation")] public static extern ushort MipChannel_rateDecimation(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannel_validateSampleRate__SWIG_0")] public static extern global::System.IntPtr MipChannel_validateSampleRate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannel_validateSampleRate__SWIG_1")] public static extern global::System.IntPtr MipChannel_validateSampleRate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipChannel")] public static extern void delete_MipChannel(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipPacket")] public static extern global::System.IntPtr new_MipPacket(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipPacket_isDataPacket")] public static extern bool MipPacket_isDataPacket(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipPacket_descriptorSet")] public static extern byte MipPacket_descriptorSet(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipPacket_payload")] public static extern global::System.IntPtr MipPacket_payload(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipPacket")] public static extern void delete_MipPacket(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoint_field")] public static extern int MipDataPoint_field(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoint_qualifier")] public static extern int MipDataPoint_qualifier(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoint_valid")] public static extern bool MipDataPoint_valid(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoint_channelName")] public static extern string MipDataPoint_channelName(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipDataPoint")] public static extern void delete_MipDataPoint(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipDataPacket__SWIG_0")] public static extern global::System.IntPtr new_MipDataPacket__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipDataPacket__SWIG_1")] public static extern global::System.IntPtr new_MipDataPacket__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPacket_data")] public static extern global::System.IntPtr MipDataPacket_data(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPacket_collectedTimestamp")] public static extern global::System.IntPtr MipDataPacket_collectedTimestamp(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPacket_utcTimestamp")] public static extern global::System.IntPtr MipDataPacket_utcTimestamp(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPacket_utcTimeValid")] public static extern bool MipDataPacket_utcTimeValid(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPacket_utcTimeFlags")] public static extern ushort MipDataPacket_utcTimeFlags(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipDataPacket")] public static extern void delete_MipDataPacket(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipNodeFeatures")] public static extern void delete_MipNodeFeatures(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipNodeFeatures_supportsCategory")] public static extern bool MipNodeFeatures_supportsCategory(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipNodeFeatures_supportsCommand")] public static extern bool MipNodeFeatures_supportsCommand(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipNodeFeatures_supportedCommands")] public static extern global::System.IntPtr MipNodeFeatures_supportedCommands(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipNodeFeatures_supportedChannelFields")] public static extern global::System.IntPtr MipNodeFeatures_supportedChannelFields(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipNodeFeatures_supportedSampleRates")] public static extern global::System.IntPtr MipNodeFeatures_supportedSampleRates(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipNodeFeatures_supportedHeadingUpdateOptions")] public static extern global::System.IntPtr MipNodeFeatures_supportedHeadingUpdateOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipNodeFeatures_supportedEstimationControlOptions")] public static extern global::System.IntPtr MipNodeFeatures_supportedEstimationControlOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipNodeFeatures_supportedAdaptiveMeasurementModes")] public static extern global::System.IntPtr MipNodeFeatures_supportedAdaptiveMeasurementModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_InertialNode")] public static extern global::System.IntPtr new_InertialNode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_InertialNode")] public static extern void delete_InertialNode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_deviceName")] public static extern string InertialNode_deviceName(string jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_connection")] public static extern global::System.IntPtr InertialNode_connection(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_features")] public static extern global::System.IntPtr InertialNode_features(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_lastCommunicationTime")] public static extern global::System.IntPtr InertialNode_lastCommunicationTime(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_firmwareVersion")] public static extern global::System.IntPtr InertialNode_firmwareVersion(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_model")] public static extern int InertialNode_model(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_modelName")] public static extern string InertialNode_modelName(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_modelNumber")] public static extern string InertialNode_modelNumber(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_serialNumber")] public static extern string InertialNode_serialNumber(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_lotNumber")] public static extern string InertialNode_lotNumber(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_deviceOptions")] public static extern string InertialNode_deviceOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getDataPackets__SWIG_0")] public static extern global::System.IntPtr InertialNode_getDataPackets__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getDataPackets__SWIG_1")] public static extern global::System.IntPtr InertialNode_getDataPackets__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getDataPackets__SWIG_2")] public static extern global::System.IntPtr InertialNode_getDataPackets__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_totalPackets")] public static extern uint InertialNode_totalPackets(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_timeout__SWIG_0")] public static extern void InertialNode_timeout__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_timeout__SWIG_1")] public static extern ulong InertialNode_timeout__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_name")] public static extern string InertialNode_name(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_ping")] public static extern bool InertialNode_ping(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setToIdle")] public static extern void InertialNode_setToIdle(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_cyclePower")] public static extern bool InertialNode_cyclePower(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_resume")] public static extern void InertialNode_resume(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_saveSettingsAsStartup")] public static extern void InertialNode_saveSettingsAsStartup(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_loadStartupSettings")] public static extern void InertialNode_loadStartupSettings(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_loadFactoryDefaultSettings")] public static extern void InertialNode_loadFactoryDefaultSettings(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_pollData__SWIG_0")] public static extern void InertialNode_pollData__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_pollData__SWIG_1")] public static extern void InertialNode_pollData__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getDataRateBase")] public static extern ushort InertialNode_getDataRateBase(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getActiveChannelFields")] public static extern global::System.IntPtr InertialNode_getActiveChannelFields(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setActiveChannelFields")] public static extern void InertialNode_setActiveChannelFields(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_saveActiveChannelFields")] public static extern void InertialNode_saveActiveChannelFields(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getCommunicationMode")] public static extern byte InertialNode_getCommunicationMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setCommunicationMode")] public static extern void InertialNode_setCommunicationMode(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_enableDataStream__SWIG_0")] public static extern void InertialNode_enableDataStream__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_enableDataStream__SWIG_1")] public static extern void InertialNode_enableDataStream__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_resetFilter")] public static extern void InertialNode_resetFilter(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getAutoInitialization")] public static extern bool InertialNode_getAutoInitialization(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setAutoInitialization")] public static extern void InertialNode_setAutoInitialization(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getAltitudeAid")] public static extern bool InertialNode_getAltitudeAid(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setAltitudeAid")] public static extern void InertialNode_setAltitudeAid(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getPitchRollAid")] public static extern bool InertialNode_getPitchRollAid(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setPitchRollAid")] public static extern void InertialNode_setPitchRollAid(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setVelocityZUPT")] public static extern void InertialNode_setVelocityZUPT(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getVelocityZUPT")] public static extern global::System.IntPtr InertialNode_getVelocityZUPT(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setAngularRateZUPT")] public static extern void InertialNode_setAngularRateZUPT(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getAngularRateZUPT")] public static extern global::System.IntPtr InertialNode_getAngularRateZUPT(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setInitialAttitude")] public static extern void InertialNode_setInitialAttitude(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setInitialHeading")] public static extern void InertialNode_setInitialHeading(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getSensorToVehicleTransformation")] public static extern global::System.IntPtr InertialNode_getSensorToVehicleTransformation(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setSensorToVehicleTransformation")] public static extern void InertialNode_setSensorToVehicleTransformation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getSensorToVehicleOffset")] public static extern global::System.IntPtr InertialNode_getSensorToVehicleOffset(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setSensorToVehicleOffset")] public static extern void InertialNode_setSensorToVehicleOffset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getAntennaOffset")] public static extern global::System.IntPtr InertialNode_getAntennaOffset(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setAntennaOffset")] public static extern void InertialNode_setAntennaOffset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getGNSSAssistedFixControl")] public static extern bool InertialNode_getGNSSAssistedFixControl(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setGNSSAssistedFixControl")] public static extern void InertialNode_setGNSSAssistedFixControl(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getGNSSAssistTimeUpdate")] public static extern global::System.IntPtr InertialNode_getGNSSAssistTimeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setGNSSAssistTimeUpdate")] public static extern void InertialNode_setGNSSAssistTimeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getGPSTimeUpdate")] public static extern uint InertialNode_getGPSTimeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setGPSTimeUpdate")] public static extern void InertialNode_setGPSTimeUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, uint jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setConstellationSettings")] public static extern void InertialNode_setConstellationSettings(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getConstellationSettings")] public static extern global::System.IntPtr InertialNode_getConstellationSettings(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setSBASSettings")] public static extern void InertialNode_setSBASSettings(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getSBASSettings")] public static extern global::System.IntPtr InertialNode_getSBASSettings(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setAccelerometerBias")] public static extern void InertialNode_setAccelerometerBias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getAccelerometerBias")] public static extern global::System.IntPtr InertialNode_getAccelerometerBias(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setGyroBias")] public static extern void InertialNode_setGyroBias(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getGyroBias")] public static extern global::System.IntPtr InertialNode_getGyroBias(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_captureGyroBias")] public static extern global::System.IntPtr InertialNode_captureGyroBias(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setMagnetometerSoftIronMatrix")] public static extern void InertialNode_setMagnetometerSoftIronMatrix(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getMagnetometerSoftIronMatrix")] public static extern global::System.IntPtr InertialNode_getMagnetometerSoftIronMatrix(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setMagnetometerHardIronOffset")] public static extern void InertialNode_setMagnetometerHardIronOffset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getMagnetometerHardIronOffset")] public static extern global::System.IntPtr InertialNode_getMagnetometerHardIronOffset(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setConingAndScullingEnable")] public static extern void InertialNode_setConingAndScullingEnable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getConingAndScullingEnable")] public static extern bool InertialNode_getConingAndScullingEnable(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setUARTBaudRate")] public static extern void InertialNode_setUARTBaudRate(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getUARTBaudRate")] public static extern uint InertialNode_getUARTBaudRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setAdvancedLowPassFilterSettings")] public static extern void InertialNode_setAdvancedLowPassFilterSettings(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getAdvancedLowPassFilterSettings")] public static extern global::System.IntPtr InertialNode_getAdvancedLowPassFilterSettings(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setComplementaryFilterSettings")] public static extern void InertialNode_setComplementaryFilterSettings(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getComplementaryFilterSettings")] public static extern global::System.IntPtr InertialNode_getComplementaryFilterSettings(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getBasicDeviceStatus")] public static extern global::System.IntPtr InertialNode_getBasicDeviceStatus(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getDiagnosticDeviceStatus")] public static extern global::System.IntPtr InertialNode_getDiagnosticDeviceStatus(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_sendRawRTCM_2_3Message")] public static extern void InertialNode_sendRawRTCM_2_3Message(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setVehicleDynamicsMode")] public static extern void InertialNode_setVehicleDynamicsMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getVehicleDynamicsMode")] public static extern int InertialNode_getVehicleDynamicsMode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setEstimationControlFlags")] public static extern void InertialNode_setEstimationControlFlags(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getEstimationControlFlags")] public static extern global::System.IntPtr InertialNode_getEstimationControlFlags(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setInclinationSource")] public static extern void InertialNode_setInclinationSource(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getInclinationSource")] public static extern global::System.IntPtr InertialNode_getInclinationSource(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setDeclinationSource")] public static extern void InertialNode_setDeclinationSource(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getDeclinationSource")] public static extern global::System.IntPtr InertialNode_getDeclinationSource(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setMagneticFieldMagnitudeSource")] public static extern void InertialNode_setMagneticFieldMagnitudeSource(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getMagneticFieldMagnitudeSource")] public static extern global::System.IntPtr InertialNode_getMagneticFieldMagnitudeSource(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setGNSS_SourceControl")] public static extern void InertialNode_setGNSS_SourceControl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getGNSS_SourceControl")] public static extern int InertialNode_getGNSS_SourceControl(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_sendExternalGNSSUpdate")] public static extern void InertialNode_sendExternalGNSSUpdate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setHeadingUpdateControl")] public static extern void InertialNode_setHeadingUpdateControl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getHeadingUpdateControl")] public static extern global::System.IntPtr InertialNode_getHeadingUpdateControl(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setGravityErrorAdaptiveMeasurement")] public static extern void InertialNode_setGravityErrorAdaptiveMeasurement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getGravityErrorAdaptiveMeasurement")] public static extern global::System.IntPtr InertialNode_getGravityErrorAdaptiveMeasurement(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setMagnetometerErrorAdaptiveMeasurement")] public static extern void InertialNode_setMagnetometerErrorAdaptiveMeasurement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getMagnetometerErrorAdaptiveMeasurement")] public static extern global::System.IntPtr InertialNode_getMagnetometerErrorAdaptiveMeasurement(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_setMagDipAngleErrorAdaptiveMeasurement")] public static extern void InertialNode_setMagDipAngleErrorAdaptiveMeasurement(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_getMagDipAngleErrorAdaptiveMeasurement")] public static extern global::System.IntPtr InertialNode_getMagDipAngleErrorAdaptiveMeasurement(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_sendExternalHeadingUpdate__SWIG_0")] public static extern void InertialNode_sendExternalHeadingUpdate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InertialNode_sendExternalHeadingUpdate__SWIG_1")] public static extern void InertialNode_sendExternalHeadingUpdate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DisplacementNode")] public static extern global::System.IntPtr new_DisplacementNode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DisplacementNode")] public static extern void delete_DisplacementNode(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_doCommand__SWIG_0")] public static extern global::System.IntPtr DisplacementNode_doCommand__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, byte jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, bool jarg6, byte jarg7); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_doCommand__SWIG_1")] public static extern global::System.IntPtr DisplacementNode_doCommand__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, byte jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, bool jarg6); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_deviceName")] public static extern string DisplacementNode_deviceName(string jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_connection")] public static extern global::System.IntPtr DisplacementNode_connection(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_features")] public static extern global::System.IntPtr DisplacementNode_features(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_lastCommunicationTime")] public static extern global::System.IntPtr DisplacementNode_lastCommunicationTime(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_firmwareVersion")] public static extern global::System.IntPtr DisplacementNode_firmwareVersion(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_model")] public static extern int DisplacementNode_model(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_modelName")] public static extern string DisplacementNode_modelName(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_modelNumber")] public static extern string DisplacementNode_modelNumber(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_serialNumber")] public static extern string DisplacementNode_serialNumber(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_lotNumber")] public static extern string DisplacementNode_lotNumber(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_deviceOptions")] public static extern string DisplacementNode_deviceOptions(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_getDataPackets__SWIG_0")] public static extern global::System.IntPtr DisplacementNode_getDataPackets__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_getDataPackets__SWIG_1")] public static extern global::System.IntPtr DisplacementNode_getDataPackets__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_getDataPackets__SWIG_2")] public static extern global::System.IntPtr DisplacementNode_getDataPackets__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_totalPackets")] public static extern uint DisplacementNode_totalPackets(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_timeout__SWIG_0")] public static extern void DisplacementNode_timeout__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_timeout__SWIG_1")] public static extern ulong DisplacementNode_timeout__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_name")] public static extern string DisplacementNode_name(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_ping")] public static extern bool DisplacementNode_ping(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_setToIdle")] public static extern void DisplacementNode_setToIdle(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_cyclePower")] public static extern bool DisplacementNode_cyclePower(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_resume")] public static extern void DisplacementNode_resume(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_getDisplacementOutputDataRate")] public static extern global::System.IntPtr DisplacementNode_getDisplacementOutputDataRate(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_getAnalogToDisplacementCal")] public static extern global::System.IntPtr DisplacementNode_getAnalogToDisplacementCal(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_setDeviceTime__SWIG_0")] public static extern void DisplacementNode_setDeviceTime__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DisplacementNode_setDeviceTime__SWIG_1")] public static extern void DisplacementNode_setDeviceTime__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_Clear")] public static extern void ChannelData_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_Add")] public static extern void ChannelData_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_size")] public static extern uint ChannelData_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_capacity")] public static extern uint ChannelData_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_reserve")] public static extern void ChannelData_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelData__SWIG_0")] public static extern global::System.IntPtr new_ChannelData__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelData__SWIG_1")] public static extern global::System.IntPtr new_ChannelData__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelData__SWIG_2")] public static extern global::System.IntPtr new_ChannelData__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_getitemcopy")] public static extern global::System.IntPtr ChannelData_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_getitem")] public static extern global::System.IntPtr ChannelData_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_setitem")] public static extern void ChannelData_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_AddRange")] public static extern void ChannelData_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_GetRange")] public static extern global::System.IntPtr ChannelData_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_Insert")] public static extern void ChannelData_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_InsertRange")] public static extern void ChannelData_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_RemoveAt")] public static extern void ChannelData_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_RemoveRange")] public static extern void ChannelData_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_Repeat")] public static extern global::System.IntPtr ChannelData_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_Reverse__SWIG_0")] public static extern void ChannelData_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_Reverse__SWIG_1")] public static extern void ChannelData_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelData_SetRange")] public static extern void ChannelData_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ChannelData")] public static extern void delete_ChannelData(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_Clear")] public static extern void MipDataPoints_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_Add")] public static extern void MipDataPoints_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_size")] public static extern uint MipDataPoints_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_capacity")] public static extern uint MipDataPoints_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_reserve")] public static extern void MipDataPoints_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipDataPoints__SWIG_0")] public static extern global::System.IntPtr new_MipDataPoints__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipDataPoints__SWIG_1")] public static extern global::System.IntPtr new_MipDataPoints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipDataPoints__SWIG_2")] public static extern global::System.IntPtr new_MipDataPoints__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_getitemcopy")] public static extern global::System.IntPtr MipDataPoints_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_getitem")] public static extern global::System.IntPtr MipDataPoints_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_setitem")] public static extern void MipDataPoints_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_AddRange")] public static extern void MipDataPoints_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_GetRange")] public static extern global::System.IntPtr MipDataPoints_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_Insert")] public static extern void MipDataPoints_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_InsertRange")] public static extern void MipDataPoints_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_RemoveAt")] public static extern void MipDataPoints_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_RemoveRange")] public static extern void MipDataPoints_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_Repeat")] public static extern global::System.IntPtr MipDataPoints_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_Reverse__SWIG_0")] public static extern void MipDataPoints_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_Reverse__SWIG_1")] public static extern void MipDataPoints_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoints_SetRange")] public static extern void MipDataPoints_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipDataPoints")] public static extern void delete_MipDataPoints(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_Clear")] public static extern void Bytes_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_Add")] public static extern void Bytes_Add(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_size")] public static extern uint Bytes_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_capacity")] public static extern uint Bytes_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_reserve")] public static extern void Bytes_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Bytes__SWIG_0")] public static extern global::System.IntPtr new_Bytes__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Bytes__SWIG_1")] public static extern global::System.IntPtr new_Bytes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Bytes__SWIG_2")] public static extern global::System.IntPtr new_Bytes__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_getitemcopy")] public static extern byte Bytes_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_getitem")] public static extern byte Bytes_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_setitem")] public static extern void Bytes_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, byte jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_AddRange")] public static extern void Bytes_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_GetRange")] public static extern global::System.IntPtr Bytes_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_Insert")] public static extern void Bytes_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, byte jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_InsertRange")] public static extern void Bytes_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_RemoveAt")] public static extern void Bytes_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_RemoveRange")] public static extern void Bytes_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_Repeat")] public static extern global::System.IntPtr Bytes_Repeat(byte jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_Reverse__SWIG_0")] public static extern void Bytes_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_Reverse__SWIG_1")] public static extern void Bytes_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_SetRange")] public static extern void Bytes_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_Contains")] public static extern bool Bytes_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_IndexOf")] public static extern int Bytes_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_LastIndexOf")] public static extern int Bytes_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bytes_Remove")] public static extern bool Bytes_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Bytes")] public static extern void delete_Bytes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DeviceList__SWIG_0")] public static extern global::System.IntPtr new_DeviceList__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DeviceList__SWIG_1")] public static extern global::System.IntPtr new_DeviceList__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_size")] public static extern uint DeviceList_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_empty")] public static extern bool DeviceList_empty(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_Clear")] public static extern void DeviceList_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_getitem")] public static extern global::System.IntPtr DeviceList_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_setitem")] public static extern void DeviceList_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_ContainsKey")] public static extern bool DeviceList_ContainsKey(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_Add")] public static extern void DeviceList_Add(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_Remove")] public static extern bool DeviceList_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_create_iterator_begin")] public static extern global::System.IntPtr DeviceList_create_iterator_begin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_get_next_key")] public static extern string DeviceList_get_next_key(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DeviceList_destroy_iterator")] public static extern void DeviceList_destroy_iterator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DeviceList")] public static extern void delete_DeviceList(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_Clear")] public static extern void NodeDiscoveries_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_Add")] public static extern void NodeDiscoveries_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_size")] public static extern uint NodeDiscoveries_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_capacity")] public static extern uint NodeDiscoveries_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_reserve")] public static extern void NodeDiscoveries_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_NodeDiscoveries__SWIG_0")] public static extern global::System.IntPtr new_NodeDiscoveries__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_NodeDiscoveries__SWIG_1")] public static extern global::System.IntPtr new_NodeDiscoveries__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_NodeDiscoveries__SWIG_2")] public static extern global::System.IntPtr new_NodeDiscoveries__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_getitemcopy")] public static extern global::System.IntPtr NodeDiscoveries_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_getitem")] public static extern global::System.IntPtr NodeDiscoveries_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_setitem")] public static extern void NodeDiscoveries_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_AddRange")] public static extern void NodeDiscoveries_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_GetRange")] public static extern global::System.IntPtr NodeDiscoveries_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_Insert")] public static extern void NodeDiscoveries_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_InsertRange")] public static extern void NodeDiscoveries_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_RemoveAt")] public static extern void NodeDiscoveries_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_RemoveRange")] public static extern void NodeDiscoveries_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_Repeat")] public static extern global::System.IntPtr NodeDiscoveries_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_Reverse__SWIG_0")] public static extern void NodeDiscoveries_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_Reverse__SWIG_1")] public static extern void NodeDiscoveries_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_NodeDiscoveries_SetRange")] public static extern void NodeDiscoveries_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_NodeDiscoveries")] public static extern void delete_NodeDiscoveries(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_Clear")] public static extern void DataSweeps_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_Add")] public static extern void DataSweeps_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_size")] public static extern uint DataSweeps_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_capacity")] public static extern uint DataSweeps_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_reserve")] public static extern void DataSweeps_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataSweeps__SWIG_0")] public static extern global::System.IntPtr new_DataSweeps__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataSweeps__SWIG_1")] public static extern global::System.IntPtr new_DataSweeps__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataSweeps__SWIG_2")] public static extern global::System.IntPtr new_DataSweeps__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_getitemcopy")] public static extern global::System.IntPtr DataSweeps_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_getitem")] public static extern global::System.IntPtr DataSweeps_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_setitem")] public static extern void DataSweeps_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_AddRange")] public static extern void DataSweeps_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_GetRange")] public static extern global::System.IntPtr DataSweeps_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_Insert")] public static extern void DataSweeps_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_InsertRange")] public static extern void DataSweeps_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_RemoveAt")] public static extern void DataSweeps_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_RemoveRange")] public static extern void DataSweeps_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_Repeat")] public static extern global::System.IntPtr DataSweeps_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_Reverse__SWIG_0")] public static extern void DataSweeps_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_Reverse__SWIG_1")] public static extern void DataSweeps_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataSweeps_SetRange")] public static extern void DataSweeps_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DataSweeps")] public static extern void delete_DataSweeps(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_Clear")] public static extern void LoggedDataSweeps_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_Add")] public static extern void LoggedDataSweeps_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_size")] public static extern uint LoggedDataSweeps_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_capacity")] public static extern uint LoggedDataSweeps_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_reserve")] public static extern void LoggedDataSweeps_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_LoggedDataSweeps__SWIG_0")] public static extern global::System.IntPtr new_LoggedDataSweeps__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_LoggedDataSweeps__SWIG_1")] public static extern global::System.IntPtr new_LoggedDataSweeps__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_LoggedDataSweeps__SWIG_2")] public static extern global::System.IntPtr new_LoggedDataSweeps__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_getitemcopy")] public static extern global::System.IntPtr LoggedDataSweeps_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_getitem")] public static extern global::System.IntPtr LoggedDataSweeps_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_setitem")] public static extern void LoggedDataSweeps_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_AddRange")] public static extern void LoggedDataSweeps_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_GetRange")] public static extern global::System.IntPtr LoggedDataSweeps_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_Insert")] public static extern void LoggedDataSweeps_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_InsertRange")] public static extern void LoggedDataSweeps_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_RemoveAt")] public static extern void LoggedDataSweeps_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_RemoveRange")] public static extern void LoggedDataSweeps_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_Repeat")] public static extern global::System.IntPtr LoggedDataSweeps_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_Reverse__SWIG_0")] public static extern void LoggedDataSweeps_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_Reverse__SWIG_1")] public static extern void LoggedDataSweeps_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_LoggedDataSweeps_SetRange")] public static extern void LoggedDataSweeps_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_LoggedDataSweeps")] public static extern void delete_LoggedDataSweeps(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_Clear")] public static extern void MipDataPackets_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_Add")] public static extern void MipDataPackets_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_size")] public static extern uint MipDataPackets_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_capacity")] public static extern uint MipDataPackets_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_reserve")] public static extern void MipDataPackets_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipDataPackets__SWIG_0")] public static extern global::System.IntPtr new_MipDataPackets__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipDataPackets__SWIG_1")] public static extern global::System.IntPtr new_MipDataPackets__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipDataPackets__SWIG_2")] public static extern global::System.IntPtr new_MipDataPackets__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_getitemcopy")] public static extern global::System.IntPtr MipDataPackets_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_getitem")] public static extern global::System.IntPtr MipDataPackets_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_setitem")] public static extern void MipDataPackets_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_AddRange")] public static extern void MipDataPackets_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_GetRange")] public static extern global::System.IntPtr MipDataPackets_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_Insert")] public static extern void MipDataPackets_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_InsertRange")] public static extern void MipDataPackets_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_RemoveAt")] public static extern void MipDataPackets_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_RemoveRange")] public static extern void MipDataPackets_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_Repeat")] public static extern global::System.IntPtr MipDataPackets_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_Reverse__SWIG_0")] public static extern void MipDataPackets_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_Reverse__SWIG_1")] public static extern void MipDataPackets_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPackets_SetRange")] public static extern void MipDataPackets_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipDataPackets")] public static extern void delete_MipDataPackets(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_Clear")] public static extern void MipChannels_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_Add")] public static extern void MipChannels_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_size")] public static extern uint MipChannels_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_capacity")] public static extern uint MipChannels_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_reserve")] public static extern void MipChannels_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipChannels__SWIG_0")] public static extern global::System.IntPtr new_MipChannels__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipChannels__SWIG_1")] public static extern global::System.IntPtr new_MipChannels__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipChannels__SWIG_2")] public static extern global::System.IntPtr new_MipChannels__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_getitemcopy")] public static extern global::System.IntPtr MipChannels_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_getitem")] public static extern global::System.IntPtr MipChannels_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_setitem")] public static extern void MipChannels_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_AddRange")] public static extern void MipChannels_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_GetRange")] public static extern global::System.IntPtr MipChannels_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_Insert")] public static extern void MipChannels_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_InsertRange")] public static extern void MipChannels_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_RemoveAt")] public static extern void MipChannels_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_RemoveRange")] public static extern void MipChannels_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_Repeat")] public static extern global::System.IntPtr MipChannels_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_Reverse__SWIG_0")] public static extern void MipChannels_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_Reverse__SWIG_1")] public static extern void MipChannels_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannels_SetRange")] public static extern void MipChannels_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipChannels")] public static extern void delete_MipChannels(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_Clear")] public static extern void DataCollectionMethods_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_Add")] public static extern void DataCollectionMethods_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_size")] public static extern uint DataCollectionMethods_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_capacity")] public static extern uint DataCollectionMethods_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_reserve")] public static extern void DataCollectionMethods_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataCollectionMethods__SWIG_0")] public static extern global::System.IntPtr new_DataCollectionMethods__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataCollectionMethods__SWIG_1")] public static extern global::System.IntPtr new_DataCollectionMethods__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataCollectionMethods__SWIG_2")] public static extern global::System.IntPtr new_DataCollectionMethods__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_getitemcopy")] public static extern int DataCollectionMethods_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_getitem")] public static extern int DataCollectionMethods_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_setitem")] public static extern void DataCollectionMethods_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_AddRange")] public static extern void DataCollectionMethods_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_GetRange")] public static extern global::System.IntPtr DataCollectionMethods_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_Insert")] public static extern void DataCollectionMethods_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_InsertRange")] public static extern void DataCollectionMethods_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_RemoveAt")] public static extern void DataCollectionMethods_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_RemoveRange")] public static extern void DataCollectionMethods_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_Repeat")] public static extern global::System.IntPtr DataCollectionMethods_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_Reverse__SWIG_0")] public static extern void DataCollectionMethods_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_Reverse__SWIG_1")] public static extern void DataCollectionMethods_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataCollectionMethods_SetRange")] public static extern void DataCollectionMethods_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DataCollectionMethods")] public static extern void delete_DataCollectionMethods(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_Clear")] public static extern void DataFormats_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_Add")] public static extern void DataFormats_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_size")] public static extern uint DataFormats_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_capacity")] public static extern uint DataFormats_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_reserve")] public static extern void DataFormats_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataFormats__SWIG_0")] public static extern global::System.IntPtr new_DataFormats__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataFormats__SWIG_1")] public static extern global::System.IntPtr new_DataFormats__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataFormats__SWIG_2")] public static extern global::System.IntPtr new_DataFormats__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_getitemcopy")] public static extern int DataFormats_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_getitem")] public static extern int DataFormats_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_setitem")] public static extern void DataFormats_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_AddRange")] public static extern void DataFormats_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_GetRange")] public static extern global::System.IntPtr DataFormats_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_Insert")] public static extern void DataFormats_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_InsertRange")] public static extern void DataFormats_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_RemoveAt")] public static extern void DataFormats_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_RemoveRange")] public static extern void DataFormats_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_Repeat")] public static extern global::System.IntPtr DataFormats_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_Reverse__SWIG_0")] public static extern void DataFormats_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_Reverse__SWIG_1")] public static extern void DataFormats_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataFormats_SetRange")] public static extern void DataFormats_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DataFormats")] public static extern void delete_DataFormats(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_Clear")] public static extern void WirelessSampleRates_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_Add")] public static extern void WirelessSampleRates_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_size")] public static extern uint WirelessSampleRates_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_capacity")] public static extern uint WirelessSampleRates_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_reserve")] public static extern void WirelessSampleRates_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessSampleRates__SWIG_0")] public static extern global::System.IntPtr new_WirelessSampleRates__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessSampleRates__SWIG_1")] public static extern global::System.IntPtr new_WirelessSampleRates__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessSampleRates__SWIG_2")] public static extern global::System.IntPtr new_WirelessSampleRates__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_getitemcopy")] public static extern int WirelessSampleRates_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_getitem")] public static extern int WirelessSampleRates_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_setitem")] public static extern void WirelessSampleRates_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_AddRange")] public static extern void WirelessSampleRates_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_GetRange")] public static extern global::System.IntPtr WirelessSampleRates_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_Insert")] public static extern void WirelessSampleRates_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_InsertRange")] public static extern void WirelessSampleRates_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_RemoveAt")] public static extern void WirelessSampleRates_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_RemoveRange")] public static extern void WirelessSampleRates_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_Repeat")] public static extern global::System.IntPtr WirelessSampleRates_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_Reverse__SWIG_0")] public static extern void WirelessSampleRates_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_Reverse__SWIG_1")] public static extern void WirelessSampleRates_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessSampleRates_SetRange")] public static extern void WirelessSampleRates_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WirelessSampleRates")] public static extern void delete_WirelessSampleRates(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_Clear")] public static extern void SamplingModes_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_Add")] public static extern void SamplingModes_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_size")] public static extern uint SamplingModes_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_capacity")] public static extern uint SamplingModes_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_reserve")] public static extern void SamplingModes_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SamplingModes__SWIG_0")] public static extern global::System.IntPtr new_SamplingModes__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SamplingModes__SWIG_1")] public static extern global::System.IntPtr new_SamplingModes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SamplingModes__SWIG_2")] public static extern global::System.IntPtr new_SamplingModes__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_getitemcopy")] public static extern int SamplingModes_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_getitem")] public static extern int SamplingModes_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_setitem")] public static extern void SamplingModes_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_AddRange")] public static extern void SamplingModes_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_GetRange")] public static extern global::System.IntPtr SamplingModes_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_Insert")] public static extern void SamplingModes_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_InsertRange")] public static extern void SamplingModes_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_RemoveAt")] public static extern void SamplingModes_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_RemoveRange")] public static extern void SamplingModes_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_Repeat")] public static extern global::System.IntPtr SamplingModes_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_Reverse__SWIG_0")] public static extern void SamplingModes_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_Reverse__SWIG_1")] public static extern void SamplingModes_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SamplingModes_SetRange")] public static extern void SamplingModes_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SamplingModes")] public static extern void delete_SamplingModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_Clear")] public static extern void DefaultModes_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_Add")] public static extern void DefaultModes_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_size")] public static extern uint DefaultModes_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_capacity")] public static extern uint DefaultModes_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_reserve")] public static extern void DefaultModes_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DefaultModes__SWIG_0")] public static extern global::System.IntPtr new_DefaultModes__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DefaultModes__SWIG_1")] public static extern global::System.IntPtr new_DefaultModes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DefaultModes__SWIG_2")] public static extern global::System.IntPtr new_DefaultModes__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_getitemcopy")] public static extern int DefaultModes_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_getitem")] public static extern int DefaultModes_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_setitem")] public static extern void DefaultModes_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_AddRange")] public static extern void DefaultModes_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_GetRange")] public static extern global::System.IntPtr DefaultModes_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_Insert")] public static extern void DefaultModes_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_InsertRange")] public static extern void DefaultModes_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_RemoveAt")] public static extern void DefaultModes_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_RemoveRange")] public static extern void DefaultModes_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_Repeat")] public static extern global::System.IntPtr DefaultModes_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_Reverse__SWIG_0")] public static extern void DefaultModes_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_Reverse__SWIG_1")] public static extern void DefaultModes_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DefaultModes_SetRange")] public static extern void DefaultModes_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DefaultModes")] public static extern void delete_DefaultModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_Clear")] public static extern void TransmitPowers_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_Add")] public static extern void TransmitPowers_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_size")] public static extern uint TransmitPowers_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_capacity")] public static extern uint TransmitPowers_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_reserve")] public static extern void TransmitPowers_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_TransmitPowers__SWIG_0")] public static extern global::System.IntPtr new_TransmitPowers__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_TransmitPowers__SWIG_1")] public static extern global::System.IntPtr new_TransmitPowers__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_TransmitPowers__SWIG_2")] public static extern global::System.IntPtr new_TransmitPowers__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_getitemcopy")] public static extern int TransmitPowers_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_getitem")] public static extern int TransmitPowers_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_setitem")] public static extern void TransmitPowers_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_AddRange")] public static extern void TransmitPowers_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_GetRange")] public static extern global::System.IntPtr TransmitPowers_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_Insert")] public static extern void TransmitPowers_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_InsertRange")] public static extern void TransmitPowers_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_RemoveAt")] public static extern void TransmitPowers_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_RemoveRange")] public static extern void TransmitPowers_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_Repeat")] public static extern global::System.IntPtr TransmitPowers_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_Reverse__SWIG_0")] public static extern void TransmitPowers_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_Reverse__SWIG_1")] public static extern void TransmitPowers_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_TransmitPowers_SetRange")] public static extern void TransmitPowers_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_TransmitPowers")] public static extern void delete_TransmitPowers(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_Clear")] public static extern void ChannelGroupSettings_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_Add")] public static extern void ChannelGroupSettings_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_size")] public static extern uint ChannelGroupSettings_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_capacity")] public static extern uint ChannelGroupSettings_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_reserve")] public static extern void ChannelGroupSettings_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelGroupSettings__SWIG_0")] public static extern global::System.IntPtr new_ChannelGroupSettings__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelGroupSettings__SWIG_1")] public static extern global::System.IntPtr new_ChannelGroupSettings__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelGroupSettings__SWIG_2")] public static extern global::System.IntPtr new_ChannelGroupSettings__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_getitemcopy")] public static extern int ChannelGroupSettings_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_getitem")] public static extern int ChannelGroupSettings_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_setitem")] public static extern void ChannelGroupSettings_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_AddRange")] public static extern void ChannelGroupSettings_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_GetRange")] public static extern global::System.IntPtr ChannelGroupSettings_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_Insert")] public static extern void ChannelGroupSettings_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_InsertRange")] public static extern void ChannelGroupSettings_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_RemoveAt")] public static extern void ChannelGroupSettings_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_RemoveRange")] public static extern void ChannelGroupSettings_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_Repeat")] public static extern global::System.IntPtr ChannelGroupSettings_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_Reverse__SWIG_0")] public static extern void ChannelGroupSettings_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_Reverse__SWIG_1")] public static extern void ChannelGroupSettings_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroupSettings_SetRange")] public static extern void ChannelGroupSettings_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ChannelGroupSettings")] public static extern void delete_ChannelGroupSettings(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_Clear")] public static extern void FatigueModes_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_Add")] public static extern void FatigueModes_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_size")] public static extern uint FatigueModes_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_capacity")] public static extern uint FatigueModes_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_reserve")] public static extern void FatigueModes_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_FatigueModes__SWIG_0")] public static extern global::System.IntPtr new_FatigueModes__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_FatigueModes__SWIG_1")] public static extern global::System.IntPtr new_FatigueModes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_FatigueModes__SWIG_2")] public static extern global::System.IntPtr new_FatigueModes__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_getitemcopy")] public static extern int FatigueModes_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_getitem")] public static extern int FatigueModes_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_setitem")] public static extern void FatigueModes_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_AddRange")] public static extern void FatigueModes_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_GetRange")] public static extern global::System.IntPtr FatigueModes_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_Insert")] public static extern void FatigueModes_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_InsertRange")] public static extern void FatigueModes_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_RemoveAt")] public static extern void FatigueModes_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_RemoveRange")] public static extern void FatigueModes_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_Repeat")] public static extern global::System.IntPtr FatigueModes_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_Reverse__SWIG_0")] public static extern void FatigueModes_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_Reverse__SWIG_1")] public static extern void FatigueModes_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_FatigueModes_SetRange")] public static extern void FatigueModes_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_FatigueModes")] public static extern void delete_FatigueModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_Clear")] public static extern void Filters_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_Add")] public static extern void Filters_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_size")] public static extern uint Filters_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_capacity")] public static extern uint Filters_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_reserve")] public static extern void Filters_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Filters__SWIG_0")] public static extern global::System.IntPtr new_Filters__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Filters__SWIG_1")] public static extern global::System.IntPtr new_Filters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Filters__SWIG_2")] public static extern global::System.IntPtr new_Filters__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_getitemcopy")] public static extern int Filters_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_getitem")] public static extern int Filters_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_setitem")] public static extern void Filters_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_AddRange")] public static extern void Filters_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_GetRange")] public static extern global::System.IntPtr Filters_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_Insert")] public static extern void Filters_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_InsertRange")] public static extern void Filters_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_RemoveAt")] public static extern void Filters_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_RemoveRange")] public static extern void Filters_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_Repeat")] public static extern global::System.IntPtr Filters_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_Reverse__SWIG_0")] public static extern void Filters_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_Reverse__SWIG_1")] public static extern void Filters_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Filters_SetRange")] public static extern void Filters_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Filters")] public static extern void delete_Filters(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_Clear")] public static extern void HighPassFilters_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_Add")] public static extern void HighPassFilters_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_size")] public static extern uint HighPassFilters_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_capacity")] public static extern uint HighPassFilters_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_reserve")] public static extern void HighPassFilters_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_HighPassFilters__SWIG_0")] public static extern global::System.IntPtr new_HighPassFilters__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_HighPassFilters__SWIG_1")] public static extern global::System.IntPtr new_HighPassFilters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_HighPassFilters__SWIG_2")] public static extern global::System.IntPtr new_HighPassFilters__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_getitemcopy")] public static extern int HighPassFilters_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_getitem")] public static extern int HighPassFilters_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_setitem")] public static extern void HighPassFilters_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_AddRange")] public static extern void HighPassFilters_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_GetRange")] public static extern global::System.IntPtr HighPassFilters_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_Insert")] public static extern void HighPassFilters_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_InsertRange")] public static extern void HighPassFilters_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_RemoveAt")] public static extern void HighPassFilters_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_RemoveRange")] public static extern void HighPassFilters_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_Repeat")] public static extern global::System.IntPtr HighPassFilters_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_Reverse__SWIG_0")] public static extern void HighPassFilters_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_Reverse__SWIG_1")] public static extern void HighPassFilters_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HighPassFilters_SetRange")] public static extern void HighPassFilters_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_HighPassFilters")] public static extern void delete_HighPassFilters(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_Clear")] public static extern void StorageLimitModes_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_Add")] public static extern void StorageLimitModes_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_size")] public static extern uint StorageLimitModes_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_capacity")] public static extern uint StorageLimitModes_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_reserve")] public static extern void StorageLimitModes_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_StorageLimitModes__SWIG_0")] public static extern global::System.IntPtr new_StorageLimitModes__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_StorageLimitModes__SWIG_1")] public static extern global::System.IntPtr new_StorageLimitModes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_StorageLimitModes__SWIG_2")] public static extern global::System.IntPtr new_StorageLimitModes__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_getitemcopy")] public static extern int StorageLimitModes_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_getitem")] public static extern int StorageLimitModes_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_setitem")] public static extern void StorageLimitModes_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_AddRange")] public static extern void StorageLimitModes_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_GetRange")] public static extern global::System.IntPtr StorageLimitModes_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_Insert")] public static extern void StorageLimitModes_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_InsertRange")] public static extern void StorageLimitModes_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_RemoveAt")] public static extern void StorageLimitModes_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_RemoveRange")] public static extern void StorageLimitModes_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_Repeat")] public static extern global::System.IntPtr StorageLimitModes_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_Reverse__SWIG_0")] public static extern void StorageLimitModes_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_Reverse__SWIG_1")] public static extern void StorageLimitModes_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_StorageLimitModes_SetRange")] public static extern void StorageLimitModes_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_StorageLimitModes")] public static extern void delete_StorageLimitModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_Clear")] public static extern void InputRanges_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_Add")] public static extern void InputRanges_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_size")] public static extern uint InputRanges_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_capacity")] public static extern uint InputRanges_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_reserve")] public static extern void InputRanges_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_InputRanges__SWIG_0")] public static extern global::System.IntPtr new_InputRanges__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_InputRanges__SWIG_1")] public static extern global::System.IntPtr new_InputRanges__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_InputRanges__SWIG_2")] public static extern global::System.IntPtr new_InputRanges__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_getitemcopy")] public static extern global::System.IntPtr InputRanges_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_getitem")] public static extern global::System.IntPtr InputRanges_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_setitem")] public static extern void InputRanges_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_AddRange")] public static extern void InputRanges_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_GetRange")] public static extern global::System.IntPtr InputRanges_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_Insert")] public static extern void InputRanges_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_InsertRange")] public static extern void InputRanges_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_RemoveAt")] public static extern void InputRanges_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_RemoveRange")] public static extern void InputRanges_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_Repeat")] public static extern global::System.IntPtr InputRanges_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_Reverse__SWIG_0")] public static extern void InputRanges_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_Reverse__SWIG_1")] public static extern void InputRanges_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_InputRanges_SetRange")] public static extern void InputRanges_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_InputRanges")] public static extern void delete_InputRanges(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_Clear")] public static extern void DataModes_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_Add")] public static extern void DataModes_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_size")] public static extern uint DataModes_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_capacity")] public static extern uint DataModes_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_reserve")] public static extern void DataModes_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataModes__SWIG_0")] public static extern global::System.IntPtr new_DataModes__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataModes__SWIG_1")] public static extern global::System.IntPtr new_DataModes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DataModes__SWIG_2")] public static extern global::System.IntPtr new_DataModes__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_getitemcopy")] public static extern int DataModes_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_getitem")] public static extern int DataModes_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_setitem")] public static extern void DataModes_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_AddRange")] public static extern void DataModes_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_GetRange")] public static extern global::System.IntPtr DataModes_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_Insert")] public static extern void DataModes_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_InsertRange")] public static extern void DataModes_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_RemoveAt")] public static extern void DataModes_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_RemoveRange")] public static extern void DataModes_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_Repeat")] public static extern global::System.IntPtr DataModes_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_Reverse__SWIG_0")] public static extern void DataModes_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_Reverse__SWIG_1")] public static extern void DataModes_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataModes_SetRange")] public static extern void DataModes_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DataModes")] public static extern void delete_DataModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_Clear")] public static extern void CommProtocols_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_Add")] public static extern void CommProtocols_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_size")] public static extern uint CommProtocols_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_capacity")] public static extern uint CommProtocols_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_reserve")] public static extern void CommProtocols_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_CommProtocols__SWIG_0")] public static extern global::System.IntPtr new_CommProtocols__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_CommProtocols__SWIG_1")] public static extern global::System.IntPtr new_CommProtocols__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_CommProtocols__SWIG_2")] public static extern global::System.IntPtr new_CommProtocols__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_getitemcopy")] public static extern int CommProtocols_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_getitem")] public static extern int CommProtocols_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_setitem")] public static extern void CommProtocols_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_AddRange")] public static extern void CommProtocols_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_GetRange")] public static extern global::System.IntPtr CommProtocols_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_Insert")] public static extern void CommProtocols_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_InsertRange")] public static extern void CommProtocols_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_RemoveAt")] public static extern void CommProtocols_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_RemoveRange")] public static extern void CommProtocols_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_Repeat")] public static extern global::System.IntPtr CommProtocols_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_Reverse__SWIG_0")] public static extern void CommProtocols_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_Reverse__SWIG_1")] public static extern void CommProtocols_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_CommProtocols_SetRange")] public static extern void CommProtocols_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_CommProtocols")] public static extern void delete_CommProtocols(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_Clear")] public static extern void Voltages_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_Add")] public static extern void Voltages_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_size")] public static extern uint Voltages_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_capacity")] public static extern uint Voltages_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_reserve")] public static extern void Voltages_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Voltages__SWIG_0")] public static extern global::System.IntPtr new_Voltages__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Voltages__SWIG_1")] public static extern global::System.IntPtr new_Voltages__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Voltages__SWIG_2")] public static extern global::System.IntPtr new_Voltages__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_getitemcopy")] public static extern int Voltages_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_getitem")] public static extern int Voltages_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_setitem")] public static extern void Voltages_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_AddRange")] public static extern void Voltages_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_GetRange")] public static extern global::System.IntPtr Voltages_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_Insert")] public static extern void Voltages_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_InsertRange")] public static extern void Voltages_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_RemoveAt")] public static extern void Voltages_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_RemoveRange")] public static extern void Voltages_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_Repeat")] public static extern global::System.IntPtr Voltages_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_Reverse__SWIG_0")] public static extern void Voltages_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_Reverse__SWIG_1")] public static extern void Voltages_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Voltages_SetRange")] public static extern void Voltages_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Voltages")] public static extern void delete_Voltages(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_Clear")] public static extern void SensorOutputModes_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_Add")] public static extern void SensorOutputModes_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_size")] public static extern uint SensorOutputModes_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_capacity")] public static extern uint SensorOutputModes_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_reserve")] public static extern void SensorOutputModes_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SensorOutputModes__SWIG_0")] public static extern global::System.IntPtr new_SensorOutputModes__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SensorOutputModes__SWIG_1")] public static extern global::System.IntPtr new_SensorOutputModes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SensorOutputModes__SWIG_2")] public static extern global::System.IntPtr new_SensorOutputModes__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_getitemcopy")] public static extern int SensorOutputModes_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_getitem")] public static extern int SensorOutputModes_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_setitem")] public static extern void SensorOutputModes_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_AddRange")] public static extern void SensorOutputModes_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_GetRange")] public static extern global::System.IntPtr SensorOutputModes_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_Insert")] public static extern void SensorOutputModes_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_InsertRange")] public static extern void SensorOutputModes_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_RemoveAt")] public static extern void SensorOutputModes_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_RemoveRange")] public static extern void SensorOutputModes_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_Repeat")] public static extern global::System.IntPtr SensorOutputModes_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_Reverse__SWIG_0")] public static extern void SensorOutputModes_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_Reverse__SWIG_1")] public static extern void SensorOutputModes_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SensorOutputModes_SetRange")] public static extern void SensorOutputModes_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SensorOutputModes")] public static extern void delete_SensorOutputModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_EepromMap__SWIG_0")] public static extern global::System.IntPtr new_EepromMap__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_EepromMap__SWIG_1")] public static extern global::System.IntPtr new_EepromMap__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_size")] public static extern uint EepromMap_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_empty")] public static extern bool EepromMap_empty(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_Clear")] public static extern void EepromMap_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_getitem")] public static extern ushort EepromMap_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_setitem")] public static extern void EepromMap_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_ContainsKey")] public static extern bool EepromMap_ContainsKey(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_Add")] public static extern void EepromMap_Add(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_Remove")] public static extern bool EepromMap_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_create_iterator_begin")] public static extern global::System.IntPtr EepromMap_create_iterator_begin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_get_next_key")] public static extern ushort EepromMap_get_next_key(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_EepromMap_destroy_iterator")] public static extern void EepromMap_destroy_iterator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_EepromMap")] public static extern void delete_EepromMap(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DerivedChannelMasks__SWIG_0")] public static extern global::System.IntPtr new_DerivedChannelMasks__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DerivedChannelMasks__SWIG_1")] public static extern global::System.IntPtr new_DerivedChannelMasks__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_size")] public static extern uint DerivedChannelMasks_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_empty")] public static extern bool DerivedChannelMasks_empty(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_Clear")] public static extern void DerivedChannelMasks_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_getitem")] public static extern global::System.IntPtr DerivedChannelMasks_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_setitem")] public static extern void DerivedChannelMasks_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_ContainsKey")] public static extern bool DerivedChannelMasks_ContainsKey(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_Add")] public static extern void DerivedChannelMasks_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_Remove")] public static extern bool DerivedChannelMasks_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_create_iterator_begin")] public static extern global::System.IntPtr DerivedChannelMasks_create_iterator_begin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_get_next_key")] public static extern int DerivedChannelMasks_get_next_key(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DerivedChannelMasks_destroy_iterator")] public static extern void DerivedChannelMasks_destroy_iterator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DerivedChannelMasks")] public static extern void delete_DerivedChannelMasks(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_Clear")] public static extern void SampleRates_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_Add")] public static extern void SampleRates_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_size")] public static extern uint SampleRates_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_capacity")] public static extern uint SampleRates_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_reserve")] public static extern void SampleRates_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SampleRates__SWIG_0")] public static extern global::System.IntPtr new_SampleRates__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SampleRates__SWIG_1")] public static extern global::System.IntPtr new_SampleRates__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SampleRates__SWIG_2")] public static extern global::System.IntPtr new_SampleRates__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_getitemcopy")] public static extern global::System.IntPtr SampleRates_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_getitem")] public static extern global::System.IntPtr SampleRates_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_setitem")] public static extern void SampleRates_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_AddRange")] public static extern void SampleRates_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_GetRange")] public static extern global::System.IntPtr SampleRates_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_Insert")] public static extern void SampleRates_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_InsertRange")] public static extern void SampleRates_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_RemoveAt")] public static extern void SampleRates_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_RemoveRange")] public static extern void SampleRates_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_Repeat")] public static extern global::System.IntPtr SampleRates_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_Reverse__SWIG_0")] public static extern void SampleRates_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_Reverse__SWIG_1")] public static extern void SampleRates_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SampleRates_SetRange")] public static extern void SampleRates_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SampleRates")] public static extern void delete_SampleRates(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_Clear")] public static extern void ConfigIssues_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_Add")] public static extern void ConfigIssues_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_size")] public static extern uint ConfigIssues_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_capacity")] public static extern uint ConfigIssues_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_reserve")] public static extern void ConfigIssues_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConfigIssues__SWIG_0")] public static extern global::System.IntPtr new_ConfigIssues__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConfigIssues__SWIG_1")] public static extern global::System.IntPtr new_ConfigIssues__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConfigIssues__SWIG_2")] public static extern global::System.IntPtr new_ConfigIssues__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_getitemcopy")] public static extern global::System.IntPtr ConfigIssues_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_getitem")] public static extern global::System.IntPtr ConfigIssues_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_setitem")] public static extern void ConfigIssues_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_AddRange")] public static extern void ConfigIssues_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_GetRange")] public static extern global::System.IntPtr ConfigIssues_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_Insert")] public static extern void ConfigIssues_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_InsertRange")] public static extern void ConfigIssues_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_RemoveAt")] public static extern void ConfigIssues_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_RemoveRange")] public static extern void ConfigIssues_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_Repeat")] public static extern global::System.IntPtr ConfigIssues_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_Reverse__SWIG_0")] public static extern void ConfigIssues_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_Reverse__SWIG_1")] public static extern void ConfigIssues_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConfigIssues_SetRange")] public static extern void ConfigIssues_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ConfigIssues")] public static extern void delete_ConfigIssues(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_Clear")] public static extern void MipChannelFields_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_Add")] public static extern void MipChannelFields_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_size")] public static extern uint MipChannelFields_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_capacity")] public static extern uint MipChannelFields_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_reserve")] public static extern void MipChannelFields_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipChannelFields__SWIG_0")] public static extern global::System.IntPtr new_MipChannelFields__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipChannelFields__SWIG_1")] public static extern global::System.IntPtr new_MipChannelFields__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipChannelFields__SWIG_2")] public static extern global::System.IntPtr new_MipChannelFields__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_getitemcopy")] public static extern int MipChannelFields_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_getitem")] public static extern int MipChannelFields_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_setitem")] public static extern void MipChannelFields_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_AddRange")] public static extern void MipChannelFields_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_GetRange")] public static extern global::System.IntPtr MipChannelFields_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_Insert")] public static extern void MipChannelFields_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_InsertRange")] public static extern void MipChannelFields_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_RemoveAt")] public static extern void MipChannelFields_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_RemoveRange")] public static extern void MipChannelFields_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_Repeat")] public static extern global::System.IntPtr MipChannelFields_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_Reverse__SWIG_0")] public static extern void MipChannelFields_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_Reverse__SWIG_1")] public static extern void MipChannelFields_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipChannelFields_SetRange")] public static extern void MipChannelFields_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipChannelFields")] public static extern void delete_MipChannelFields(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_Clear")] public static extern void MipCommands_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_Add")] public static extern void MipCommands_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_size")] public static extern uint MipCommands_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_capacity")] public static extern uint MipCommands_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_reserve")] public static extern void MipCommands_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipCommands__SWIG_0")] public static extern global::System.IntPtr new_MipCommands__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipCommands__SWIG_1")] public static extern global::System.IntPtr new_MipCommands__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_MipCommands__SWIG_2")] public static extern global::System.IntPtr new_MipCommands__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_getitemcopy")] public static extern int MipCommands_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_getitem")] public static extern int MipCommands_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_setitem")] public static extern void MipCommands_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_AddRange")] public static extern void MipCommands_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_GetRange")] public static extern global::System.IntPtr MipCommands_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_Insert")] public static extern void MipCommands_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_InsertRange")] public static extern void MipCommands_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_RemoveAt")] public static extern void MipCommands_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_RemoveRange")] public static extern void MipCommands_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_Repeat")] public static extern global::System.IntPtr MipCommands_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_Reverse__SWIG_0")] public static extern void MipCommands_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_Reverse__SWIG_1")] public static extern void MipCommands_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipCommands_SetRange")] public static extern void MipCommands_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_MipCommands")] public static extern void delete_MipCommands(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_Clear")] public static extern void ChannelGroups_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_Add")] public static extern void ChannelGroups_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_size")] public static extern uint ChannelGroups_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_capacity")] public static extern uint ChannelGroups_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_reserve")] public static extern void ChannelGroups_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelGroups__SWIG_0")] public static extern global::System.IntPtr new_ChannelGroups__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelGroups__SWIG_1")] public static extern global::System.IntPtr new_ChannelGroups__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelGroups__SWIG_2")] public static extern global::System.IntPtr new_ChannelGroups__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_getitemcopy")] public static extern global::System.IntPtr ChannelGroups_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_getitem")] public static extern global::System.IntPtr ChannelGroups_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_setitem")] public static extern void ChannelGroups_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_AddRange")] public static extern void ChannelGroups_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_GetRange")] public static extern global::System.IntPtr ChannelGroups_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_Insert")] public static extern void ChannelGroups_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_InsertRange")] public static extern void ChannelGroups_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_RemoveAt")] public static extern void ChannelGroups_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_RemoveRange")] public static extern void ChannelGroups_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_Repeat")] public static extern global::System.IntPtr ChannelGroups_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_Reverse__SWIG_0")] public static extern void ChannelGroups_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_Reverse__SWIG_1")] public static extern void ChannelGroups_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelGroups_SetRange")] public static extern void ChannelGroups_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ChannelGroups")] public static extern void delete_ChannelGroups(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_Clear")] public static extern void WirelessChannels_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_Add")] public static extern void WirelessChannels_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_size")] public static extern uint WirelessChannels_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_capacity")] public static extern uint WirelessChannels_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_reserve")] public static extern void WirelessChannels_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessChannels__SWIG_0")] public static extern global::System.IntPtr new_WirelessChannels__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessChannels__SWIG_1")] public static extern global::System.IntPtr new_WirelessChannels__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WirelessChannels__SWIG_2")] public static extern global::System.IntPtr new_WirelessChannels__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_getitemcopy")] public static extern global::System.IntPtr WirelessChannels_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_getitem")] public static extern global::System.IntPtr WirelessChannels_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_setitem")] public static extern void WirelessChannels_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_AddRange")] public static extern void WirelessChannels_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_GetRange")] public static extern global::System.IntPtr WirelessChannels_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_Insert")] public static extern void WirelessChannels_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_InsertRange")] public static extern void WirelessChannels_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_RemoveAt")] public static extern void WirelessChannels_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_RemoveRange")] public static extern void WirelessChannels_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_Repeat")] public static extern global::System.IntPtr WirelessChannels_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_Reverse__SWIG_0")] public static extern void WirelessChannels_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_Reverse__SWIG_1")] public static extern void WirelessChannels_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessChannels_SetRange")] public static extern void WirelessChannels_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WirelessChannels")] public static extern void delete_WirelessChannels(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DamageAngles__SWIG_0")] public static extern global::System.IntPtr new_DamageAngles__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_DamageAngles__SWIG_1")] public static extern global::System.IntPtr new_DamageAngles__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_size")] public static extern uint DamageAngles_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_empty")] public static extern bool DamageAngles_empty(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_Clear")] public static extern void DamageAngles_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_getitem")] public static extern float DamageAngles_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_setitem")] public static extern void DamageAngles_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, float jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_ContainsKey")] public static extern bool DamageAngles_ContainsKey(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_Add")] public static extern void DamageAngles_Add(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, float jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_Remove")] public static extern bool DamageAngles_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_create_iterator_begin")] public static extern global::System.IntPtr DamageAngles_create_iterator_begin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_get_next_key")] public static extern byte DamageAngles_get_next_key(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DamageAngles_destroy_iterator")] public static extern void DamageAngles_destroy_iterator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_DamageAngles")] public static extern void delete_DamageAngles(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SnCurveSegments__SWIG_0")] public static extern global::System.IntPtr new_SnCurveSegments__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SnCurveSegments__SWIG_1")] public static extern global::System.IntPtr new_SnCurveSegments__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_size")] public static extern uint SnCurveSegments_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_empty")] public static extern bool SnCurveSegments_empty(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_Clear")] public static extern void SnCurveSegments_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_getitem")] public static extern global::System.IntPtr SnCurveSegments_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_setitem")] public static extern void SnCurveSegments_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_ContainsKey")] public static extern bool SnCurveSegments_ContainsKey(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_Add")] public static extern void SnCurveSegments_Add(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_Remove")] public static extern bool SnCurveSegments_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_create_iterator_begin")] public static extern global::System.IntPtr SnCurveSegments_create_iterator_begin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_get_next_key")] public static extern byte SnCurveSegments_get_next_key(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SnCurveSegments_destroy_iterator")] public static extern void SnCurveSegments_destroy_iterator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SnCurveSegments")] public static extern void delete_SnCurveSegments(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_RfSweep__SWIG_0")] public static extern global::System.IntPtr new_RfSweep__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_RfSweep__SWIG_1")] public static extern global::System.IntPtr new_RfSweep__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_size")] public static extern uint RfSweep_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_empty")] public static extern bool RfSweep_empty(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_Clear")] public static extern void RfSweep_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_getitem")] public static extern short RfSweep_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_setitem")] public static extern void RfSweep_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, short jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_ContainsKey")] public static extern bool RfSweep_ContainsKey(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_Add")] public static extern void RfSweep_Add(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, short jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_Remove")] public static extern bool RfSweep_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_create_iterator_begin")] public static extern global::System.IntPtr RfSweep_create_iterator_begin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_get_next_key")] public static extern uint RfSweep_get_next_key(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_RfSweep_destroy_iterator")] public static extern void RfSweep_destroy_iterator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_RfSweep")] public static extern void delete_RfSweep(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Triggers__SWIG_0")] public static extern global::System.IntPtr new_Triggers__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Triggers__SWIG_1")] public static extern global::System.IntPtr new_Triggers__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_size")] public static extern uint Triggers_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_empty")] public static extern bool Triggers_empty(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_Clear")] public static extern void Triggers_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_getitem")] public static extern global::System.IntPtr Triggers_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_setitem")] public static extern void Triggers_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_ContainsKey")] public static extern bool Triggers_ContainsKey(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_Add")] public static extern void Triggers_Add(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_Remove")] public static extern bool Triggers_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_create_iterator_begin")] public static extern global::System.IntPtr Triggers_create_iterator_begin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_get_next_key")] public static extern byte Triggers_get_next_key(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Triggers_destroy_iterator")] public static extern void Triggers_destroy_iterator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Triggers")] public static extern void delete_Triggers(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelCalMap__SWIG_0")] public static extern global::System.IntPtr new_ChannelCalMap__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ChannelCalMap__SWIG_1")] public static extern global::System.IntPtr new_ChannelCalMap__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_size")] public static extern uint ChannelCalMap_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_empty")] public static extern bool ChannelCalMap_empty(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_Clear")] public static extern void ChannelCalMap_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_getitem")] public static extern global::System.IntPtr ChannelCalMap_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_setitem")] public static extern void ChannelCalMap_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_ContainsKey")] public static extern bool ChannelCalMap_ContainsKey(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_Add")] public static extern void ChannelCalMap_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_Remove")] public static extern bool ChannelCalMap_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_create_iterator_begin")] public static extern global::System.IntPtr ChannelCalMap_create_iterator_begin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_get_next_key")] public static extern int ChannelCalMap_get_next_key(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ChannelCalMap_destroy_iterator")] public static extern void ChannelCalMap_destroy_iterator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ChannelCalMap")] public static extern void delete_ChannelCalMap(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_Clear")] public static extern void ConnectionDebugDataVec_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_Add")] public static extern void ConnectionDebugDataVec_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_size")] public static extern uint ConnectionDebugDataVec_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_capacity")] public static extern uint ConnectionDebugDataVec_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_reserve")] public static extern void ConnectionDebugDataVec_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConnectionDebugDataVec__SWIG_0")] public static extern global::System.IntPtr new_ConnectionDebugDataVec__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConnectionDebugDataVec__SWIG_1")] public static extern global::System.IntPtr new_ConnectionDebugDataVec__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_ConnectionDebugDataVec__SWIG_2")] public static extern global::System.IntPtr new_ConnectionDebugDataVec__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_getitemcopy")] public static extern global::System.IntPtr ConnectionDebugDataVec_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_getitem")] public static extern global::System.IntPtr ConnectionDebugDataVec_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_setitem")] public static extern void ConnectionDebugDataVec_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_AddRange")] public static extern void ConnectionDebugDataVec_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_GetRange")] public static extern global::System.IntPtr ConnectionDebugDataVec_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_Insert")] public static extern void ConnectionDebugDataVec_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_InsertRange")] public static extern void ConnectionDebugDataVec_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_RemoveAt")] public static extern void ConnectionDebugDataVec_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_RemoveRange")] public static extern void ConnectionDebugDataVec_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_Repeat")] public static extern global::System.IntPtr ConnectionDebugDataVec_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_Reverse__SWIG_0")] public static extern void ConnectionDebugDataVec_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_Reverse__SWIG_1")] public static extern void ConnectionDebugDataVec_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_ConnectionDebugDataVec_SetRange")] public static extern void ConnectionDebugDataVec_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_ConnectionDebugDataVec")] public static extern void delete_ConnectionDebugDataVec(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_Clear")] public static extern void SatellitePRNs_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_Add")] public static extern void SatellitePRNs_Add(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_size")] public static extern uint SatellitePRNs_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_capacity")] public static extern uint SatellitePRNs_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_reserve")] public static extern void SatellitePRNs_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SatellitePRNs__SWIG_0")] public static extern global::System.IntPtr new_SatellitePRNs__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SatellitePRNs__SWIG_1")] public static extern global::System.IntPtr new_SatellitePRNs__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_SatellitePRNs__SWIG_2")] public static extern global::System.IntPtr new_SatellitePRNs__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_getitemcopy")] public static extern ushort SatellitePRNs_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_getitem")] public static extern ushort SatellitePRNs_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_setitem")] public static extern void SatellitePRNs_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_AddRange")] public static extern void SatellitePRNs_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_GetRange")] public static extern global::System.IntPtr SatellitePRNs_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_Insert")] public static extern void SatellitePRNs_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, ushort jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_InsertRange")] public static extern void SatellitePRNs_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_RemoveAt")] public static extern void SatellitePRNs_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_RemoveRange")] public static extern void SatellitePRNs_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_Repeat")] public static extern global::System.IntPtr SatellitePRNs_Repeat(ushort jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_Reverse__SWIG_0")] public static extern void SatellitePRNs_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_Reverse__SWIG_1")] public static extern void SatellitePRNs_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_SetRange")] public static extern void SatellitePRNs_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_Contains")] public static extern bool SatellitePRNs_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_IndexOf")] public static extern int SatellitePRNs_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_LastIndexOf")] public static extern int SatellitePRNs_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_SatellitePRNs_Remove")] public static extern bool SatellitePRNs_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_SatellitePRNs")] public static extern void delete_SatellitePRNs(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_Clear")] public static extern void Constellations_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_Add")] public static extern void Constellations_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_size")] public static extern uint Constellations_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_capacity")] public static extern uint Constellations_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_reserve")] public static extern void Constellations_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Constellations__SWIG_0")] public static extern global::System.IntPtr new_Constellations__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Constellations__SWIG_1")] public static extern global::System.IntPtr new_Constellations__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Constellations__SWIG_2")] public static extern global::System.IntPtr new_Constellations__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_getitemcopy")] public static extern global::System.IntPtr Constellations_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_getitem")] public static extern global::System.IntPtr Constellations_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_setitem")] public static extern void Constellations_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_AddRange")] public static extern void Constellations_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_GetRange")] public static extern global::System.IntPtr Constellations_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_Insert")] public static extern void Constellations_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_InsertRange")] public static extern void Constellations_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_RemoveAt")] public static extern void Constellations_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_RemoveRange")] public static extern void Constellations_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_Repeat")] public static extern global::System.IntPtr Constellations_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_Reverse__SWIG_0")] public static extern void Constellations_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_Reverse__SWIG_1")] public static extern void Constellations_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Constellations_SetRange")] public static extern void Constellations_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Constellations")] public static extern void delete_Constellations(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_Clear")] public static extern void HeadingUpdateOptionsList_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_Add")] public static extern void HeadingUpdateOptionsList_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_size")] public static extern uint HeadingUpdateOptionsList_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_capacity")] public static extern uint HeadingUpdateOptionsList_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_reserve")] public static extern void HeadingUpdateOptionsList_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_HeadingUpdateOptionsList__SWIG_0")] public static extern global::System.IntPtr new_HeadingUpdateOptionsList__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_HeadingUpdateOptionsList__SWIG_1")] public static extern global::System.IntPtr new_HeadingUpdateOptionsList__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_HeadingUpdateOptionsList__SWIG_2")] public static extern global::System.IntPtr new_HeadingUpdateOptionsList__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_getitemcopy")] public static extern global::System.IntPtr HeadingUpdateOptionsList_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_getitem")] public static extern global::System.IntPtr HeadingUpdateOptionsList_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_setitem")] public static extern void HeadingUpdateOptionsList_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_AddRange")] public static extern void HeadingUpdateOptionsList_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_GetRange")] public static extern global::System.IntPtr HeadingUpdateOptionsList_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_Insert")] public static extern void HeadingUpdateOptionsList_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_InsertRange")] public static extern void HeadingUpdateOptionsList_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_RemoveAt")] public static extern void HeadingUpdateOptionsList_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_RemoveRange")] public static extern void HeadingUpdateOptionsList_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_Repeat")] public static extern global::System.IntPtr HeadingUpdateOptionsList_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_Reverse__SWIG_0")] public static extern void HeadingUpdateOptionsList_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_Reverse__SWIG_1")] public static extern void HeadingUpdateOptionsList_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_HeadingUpdateOptionsList_SetRange")] public static extern void HeadingUpdateOptionsList_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_HeadingUpdateOptionsList")] public static extern void delete_HeadingUpdateOptionsList(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_Clear")] public static extern void AdaptiveMeasurementModes_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_Add")] public static extern void AdaptiveMeasurementModes_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_size")] public static extern uint AdaptiveMeasurementModes_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_capacity")] public static extern uint AdaptiveMeasurementModes_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_reserve")] public static extern void AdaptiveMeasurementModes_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_AdaptiveMeasurementModes__SWIG_0")] public static extern global::System.IntPtr new_AdaptiveMeasurementModes__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_AdaptiveMeasurementModes__SWIG_1")] public static extern global::System.IntPtr new_AdaptiveMeasurementModes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_AdaptiveMeasurementModes__SWIG_2")] public static extern global::System.IntPtr new_AdaptiveMeasurementModes__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_getitemcopy")] public static extern int AdaptiveMeasurementModes_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_getitem")] public static extern int AdaptiveMeasurementModes_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_setitem")] public static extern void AdaptiveMeasurementModes_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_AddRange")] public static extern void AdaptiveMeasurementModes_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_GetRange")] public static extern global::System.IntPtr AdaptiveMeasurementModes_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_Insert")] public static extern void AdaptiveMeasurementModes_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_InsertRange")] public static extern void AdaptiveMeasurementModes_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_RemoveAt")] public static extern void AdaptiveMeasurementModes_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_RemoveRange")] public static extern void AdaptiveMeasurementModes_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_Repeat")] public static extern global::System.IntPtr AdaptiveMeasurementModes_Repeat(int jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_Reverse__SWIG_0")] public static extern void AdaptiveMeasurementModes_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_Reverse__SWIG_1")] public static extern void AdaptiveMeasurementModes_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AdaptiveMeasurementModes_SetRange")] public static extern void AdaptiveMeasurementModes_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_AdaptiveMeasurementModes")] public static extern void delete_AdaptiveMeasurementModes(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WsdaMap__SWIG_0")] public static extern global::System.IntPtr new_WsdaMap__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_WsdaMap__SWIG_1")] public static extern global::System.IntPtr new_WsdaMap__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_size")] public static extern uint WsdaMap_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_empty")] public static extern bool WsdaMap_empty(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_Clear")] public static extern void WsdaMap_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_getitem")] public static extern global::System.IntPtr WsdaMap_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_setitem")] public static extern void WsdaMap_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_ContainsKey")] public static extern bool WsdaMap_ContainsKey(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_Add")] public static extern void WsdaMap_Add(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_Remove")] public static extern bool WsdaMap_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_create_iterator_begin")] public static extern global::System.IntPtr WsdaMap_create_iterator_begin(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_get_next_key")] public static extern string WsdaMap_get_next_key(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WsdaMap_destroy_iterator")] public static extern void WsdaMap_destroy_iterator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.IntPtr jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_WsdaMap")] public static extern void delete_WsdaMap(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_Clear")] public static extern void Bins_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_Add")] public static extern void Bins_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_size")] public static extern uint Bins_size(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_capacity")] public static extern uint Bins_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_reserve")] public static extern void Bins_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Bins__SWIG_0")] public static extern global::System.IntPtr new_Bins__SWIG_0(); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Bins__SWIG_1")] public static extern global::System.IntPtr new_Bins__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_new_Bins__SWIG_2")] public static extern global::System.IntPtr new_Bins__SWIG_2(int jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_getitemcopy")] public static extern global::System.IntPtr Bins_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_getitem")] public static extern global::System.IntPtr Bins_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_setitem")] public static extern void Bins_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_AddRange")] public static extern void Bins_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_GetRange")] public static extern global::System.IntPtr Bins_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_Insert")] public static extern void Bins_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_InsertRange")] public static extern void Bins_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_RemoveAt")] public static extern void Bins_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_RemoveRange")] public static extern void Bins_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_Repeat")] public static extern global::System.IntPtr Bins_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_Reverse__SWIG_0")] public static extern void Bins_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_Reverse__SWIG_1")] public static extern void Bins_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_Bins_SetRange")] public static extern void Bins_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_delete_Bins")] public static extern void delete_Bins(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_DataPoint_SWIGUpcast")] public static extern global::System.IntPtr DataPoint_SWIGUpcast(global::System.IntPtr jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_WirelessDataPoint_SWIGUpcast")] public static extern global::System.IntPtr WirelessDataPoint_SWIGUpcast(global::System.IntPtr jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink_SWIGUpcast")] public static extern global::System.IntPtr AutoCalResult_shmLink_SWIGUpcast(global::System.IntPtr jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoCalResult_shmLink201_SWIGUpcast")] public static extern global::System.IntPtr AutoCalResult_shmLink201_SWIGUpcast(global::System.IntPtr jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_AutoShuntCalResult_SWIGUpcast")] public static extern global::System.IntPtr AutoShuntCalResult_SWIGUpcast(global::System.IntPtr jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPoint_SWIGUpcast")] public static extern global::System.IntPtr MipDataPoint_SWIGUpcast(global::System.IntPtr jarg1); [global::System.Runtime.InteropServices.DllImport("mscl", EntryPoint="CSharp_MipDataPacket_SWIGUpcast")] public static extern global::System.IntPtr MipDataPacket_SWIGUpcast(global::System.IntPtr jarg1); } }