X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Runtime.InteropServices%2FUCOMIEnumConnections.cs;h=92ee2ec7afb62e2fbeed4179f95889e5dd9893dd;hb=10eadfdd38d35fbc2906008375984770dcc478bc;hp=494e6fd86cf479928e401b33810c36640e407a7b;hpb=f73e0d5c67f0d26e85b92fc4b75fc48783f20d64;p=mono.git diff --git a/mcs/class/corlib/System.Runtime.InteropServices/UCOMIEnumConnections.cs b/mcs/class/corlib/System.Runtime.InteropServices/UCOMIEnumConnections.cs index 494e6fd86cf..92ee2ec7afb 100644 --- a/mcs/class/corlib/System.Runtime.InteropServices/UCOMIEnumConnections.cs +++ b/mcs/class/corlib/System.Runtime.InteropServices/UCOMIEnumConnections.cs @@ -28,25 +28,17 @@ namespace System.Runtime.InteropServices { -#if NET_2_0 [Obsolete] [ComImport] -#endif [Guid ("b196b287-bab4-101a-b69c-00aa00341d07")] [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)] public interface UCOMIEnumConnections { -#if NET_2_0 [PreserveSig] -#endif int Next (int celt, [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex=0)] CONNECTDATA[] rgelt, out int pceltFetched); -#if NET_2_0 [PreserveSig] -#endif int Skip (int celt); -#if NET_2_0 [PreserveSig] -#endif void Reset (); void Clone (out UCOMIEnumConnections ppenum); }