using System;
namespace System.Runtime.InteropServices
{
/// Use instead.
// Token: 0x02000356 RID: 854
[Obsolete]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[Guid("00000102-0000-0000-c000-000000000046")]
[ComImport]
public interface UCOMIEnumMoniker
{
/// Retrieves a specified number of items in the enumeration sequence.
/// S_OK if the parameter equals the parameter; otherwise, S_FALSE.
/// The number of monikers to return in .
/// On successful return, a reference to the enumerated monikers.
/// On successful return, a reference to the actual number of monikers enumerated in .
// Token: 0x06002351 RID: 9041
[PreserveSig]
int Next(int celt, [MarshalAs(UnmanagedType.LPArray, SizeConst = 0, SizeParamIndex = 0)] [Out] UCOMIMoniker[] rgelt, out int pceltFetched);
/// Skips over a specified number of items in the enumeration sequence.
/// S_OK if the number of elements skipped equals the parameter; otherwise, S_FALSE.
/// The number of elements to skip in the enumeration.
// Token: 0x06002352 RID: 9042
[PreserveSig]
int Skip(int celt);
/// Resets the enumeration sequence to the beginning.
/// An HRESULT with the value S_OK.
// Token: 0x06002353 RID: 9043
[PreserveSig]
int Reset();
/// Creates another enumerator that contains the same enumeration state as the current one.
/// On successful return, a reference to the newly created enumerator.
// Token: 0x06002354 RID: 9044
void Clone(out UCOMIEnumMoniker ppenum);
}
}