X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Runtime.InteropServices%2FUCOMIEnumString.cs;h=81097eb28d6753bf2ef75b57341b824229de7dd8;hb=669beaed8380fa592533c8755f72593b4422d01d;hp=967c016f29804e8526687b644d4eb31829b1ace2;hpb=55f083bfd72558e0dcd0f44ab4f9fecd2f96c749;p=mono.git diff --git a/mcs/class/corlib/System.Runtime.InteropServices/UCOMIEnumString.cs b/mcs/class/corlib/System.Runtime.InteropServices/UCOMIEnumString.cs index 967c016f298..81097eb28d6 100644 --- a/mcs/class/corlib/System.Runtime.InteropServices/UCOMIEnumString.cs +++ b/mcs/class/corlib/System.Runtime.InteropServices/UCOMIEnumString.cs @@ -28,8 +28,6 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -using System; - namespace System.Runtime.InteropServices { #if NET_2_0 @@ -40,17 +38,11 @@ namespace System.Runtime.InteropServices [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)] public interface UCOMIEnumString { -#if NET_2_0 [PreserveSig] -#endif - int Next (int celt, [Out, MarshalAs (UnmanagedType.LPArray, SizeParamIndex = 0)] string[] rgelt, out int pceltFetched); -#if NET_2_0 + int Next (int celt, [Out, MarshalAs (UnmanagedType.LPArray, ArraySubType=UnmanagedType.LPWStr, SizeParamIndex = 0)] string[] rgelt, out int pceltFetched); [PreserveSig] -#endif int Skip (int celt); -#if NET_2_0 [PreserveSig] -#endif int Reset (); void Clone (out UCOMIEnumString ppenum); }