2004-01-30 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMIEnumConnectionPoints.cs
1 //
2 // System.Runtime.InteropServices.UCOMIEnumConnectionPoints.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 ("b196b285-bab4-101a-b69c-00aa00341d07")]
13         [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
14         public interface UCOMIEnumConnectionPoints
15         {
16                 void Clone (out UCOMIEnumConnectionPoints ppenum);
17                 int Next (int celt, [Out] UCOMIConnectionPoint[] rgelt, out int pceltFetched);
18                 int Reset ();
19                 int Skip (int celt);
20         }
21 }