Implement StringToCoTaskMem{Ansi,Uni} (bug 58102).
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMIEnumVARIANT.cs
1 //
2 // System.Runtime.InteropServices.UCOMIEnumVARIANT.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 ("00020404-0000-0000-c000-000000000046")]
13         [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
14         public interface UCOMIEnumVARIANT
15         {
16                 void Clone (int ppenum);
17                 int Next (int celt, int rgvar, int pceltFetched);
18                 int Reset ();
19                 int Skip (int celt);
20         }
21 }