052b12f460c220b390475b4a786f47bc961c3e7d
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMIEnumString.cs
1 //
2 // System.Runtime.InteropServices.UCOMIEnumString.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7
8 using System;
9
10 namespace System.Runtime.InteropServices
11 {
12         [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
13         public interface UCOMIEnumString
14         {
15                 void Clone (ref UCOMIEnumString ppenum);
16                 int Next (int celt, string[] rgelt, ref int pceltFetched);
17                 int Reset ();
18                 int Skip (int celt);
19         }
20 }