2003-08-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[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 }