Implement StringToCoTaskMem{Ansi,Uni} (bug 58102).
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMIEnumConnections.cs
1 //
2 // System.Runtime.InteropServices.UCOMIEnumConnections.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 ("b196b287-bab4-101a-b69c-00aa00341d07")]
13         [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
14         public interface UCOMIEnumConnections
15         {
16                 void Clone (out UCOMIEnumConnections ppenum);
17                 int Next (int celt, [Out] CONNECTDATA[] rgelt, out int pceltFetched);
18                 void Reset ();
19                 int Skip (int celt);
20         }
21 }