Merge pull request #1857 from slluis/fix-assembly-resolver
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMIEnumConnectionPoints.cs
index e94333ebf10ca6eed948c53cb928091fda0cee41..bb669b78e0d47ed47cdcf9dcd2befe3b6f13b757 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+#if !FULL_AOT_RUNTIME
 namespace System.Runtime.InteropServices
 {
-#if NET_2_0
        [Obsolete]
        [ComImport]
-#endif
        [Guid ("b196b285-bab4-101a-b69c-00aa00341d07")]
        [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
        public interface UCOMIEnumConnectionPoints
        {
-#if NET_2_0
                [PreserveSig]
-#endif
                int Next (int celt, [Out, MarshalAs (UnmanagedType.LPArray, SizeParamIndex = 0)] UCOMIConnectionPoint[] rgelt, out int pceltFetched);
-#if NET_2_0
                [PreserveSig]
-#endif
                int Skip (int celt);
-#if NET_2_0
                [PreserveSig]
-#endif
                int Reset ();
                void Clone (out UCOMIEnumConnectionPoints ppenum);
        }
 }
+#endif