Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMIEnumVARIANT.cs
index db0fa65a0bc38f5246e193fcf8bb0fb6ee98b254..dbe383e0c8054799af62ad8f27b1e7a145e10ef6 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 ("00020404-0000-0000-c000-000000000046")]
        [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
        public interface UCOMIEnumVARIANT
        {
-#if NET_2_0
                [PreserveSig]
-#endif
                int Next (int celt, int rgvar, int pceltFetched);
-#if NET_2_0
                [PreserveSig]
-#endif
                int Skip (int celt);
-#if NET_2_0
                [PreserveSig]
-#endif
                int Reset ();
                void Clone (int ppenum);
        }
 }
+#endif