Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMIEnumMoniker.cs
index cdff7cd6f5d131dc22485f23b0830c203a1b3383..bb0d59519eab22c455acec615ef90b6033615230 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 ("00000102-0000-0000-c000-000000000046")]
        [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
        public interface UCOMIEnumMoniker
        {
-#if NET_2_0
                [PreserveSig]
-#endif
                int Next (int celt, [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)] UCOMIMoniker[] 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 UCOMIEnumMoniker ppenum);
        }
 }
+#endif