Add
authorMiguel de Icaza <miguel@gnome.org>
Sat, 20 Dec 2008 07:26:29 +0000 (07:26 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Sat, 20 Dec 2008 07:26:29 +0000 (07:26 -0000)
svn path=/trunk/mcs/; revision=121918

mcs/class/corlib/System.Runtime.InteropServices/AllowReversePInvokeCallsAttribute.cs [new file with mode: 0644]
mcs/class/corlib/corlib.dll.sources

diff --git a/mcs/class/corlib/System.Runtime.InteropServices/AllowReversePInvokeCallsAttribute.cs b/mcs/class/corlib/System.Runtime.InteropServices/AllowReversePInvokeCallsAttribute.cs
new file mode 100644 (file)
index 0000000..0915256
--- /dev/null
@@ -0,0 +1,40 @@
+//
+// System.Runtime.InteropServices.AllowReversePInvokeCallsAttribute.cs
+//
+// Copyrigh 2008 Novell, Inc.  http://www.ximian.com
+//
+
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+using System;
+
+#if NET_2_0
+
+namespace System.Runtime.InteropServices {
+
+       [AttributeUsage (AttributeTargets.Method, AllowMultiple = false, Inherited=false)]
+       public sealed class AllowReversePInvokeCallsAttribute : Attribute {
+               public AllowReversePInvokeCallsAttribute () { }
+       }
+}
+#endif
index 7bdcfb8edcd6017107d73d6faffb8976b31a5759..e5aa605a1593debe27f03a4afc300c93701fff64 100644 (file)
@@ -640,6 +640,7 @@ System.Runtime.InteropServices/_SignatureHelper.cs
 System.Runtime.InteropServices/_Thread.cs
 System.Runtime.InteropServices/_Type.cs
 System.Runtime.InteropServices/_TypeBuilder.cs
+System.Runtime.InteropServices/AllowReversePInvokeCallsAttribute.cs
 System.Runtime.InteropServices/ArrayWithOffset.cs
 System.Runtime.InteropServices/AssemblyRegistrationFlags.cs
 System.Runtime.InteropServices/AutomationProxyAttribute.cs