using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace Interop.Lmx; [ComImport] [Guid("9C7672AE-1F39-49C3-AEB0-6C4D95D0B5BA")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface IBaseRuntimeScanOnDemand { [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] void SuspendUpdates([In] short shPrimitiveId, [In] uint dwCount, [In] ref short pshAttributeId); [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] void ActivateUpdates([In] short shPrimitiveId, [In] uint dwCount, [In] ref short pshAttributeId); }