using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace Interop.Lmx; [ComImport] [Guid("A2E82EF1-DA5F-11D3-9379-00C04FA04C92")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface IEnumAttributeCheckpoint { [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] void Next([In] int NumberElements, [MarshalAs(UnmanagedType.Interface)] out IAttributeCheckpoint ppAttributeCheckpoint, out int pNumberElementsInArray); [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] void Clone([In][MarshalAs(UnmanagedType.Interface)] ref IEnumAttributeCheckpoint ppEnumAttributeCheckpoint); [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] void Reset(); [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] void Skip([In] int ItemsToSkip); }