using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace Interop.NmxAdptr; [ComImport] [Guid("4169B479-54BD-11D3-A9CC-00A0C9FB55A0")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface INmxStatistics { [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] void GetNmxStatistics(out tagNmxStatsInfo pNmxStats); [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] void Reset(); }