using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace Interop.NmxAdptr; [ComImport] [Guid("6EB90E4C-DF5C-47F0-B2CD-110549C1162A")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface INmxSvcStatistics { [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] void GetNmxSvcStatistics(out tagNmxSvcStatsInfo pNmxSvcStats); [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] void ResetSvcStatistics(); }