Signature fixes for .NET 1.1
[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         [Guid ("00000101-0000-0000-c000-000000000046")]
13         [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
14         public interface UCOMIEnumString
15         {
16                 void Clone (out UCOMIEnumString ppenum);
17                 int Next (int celt, [Out] string[] rgelt, out int pceltFetched);
18                 int Reset ();
19                 int Skip (int celt);
20         }
21 }