Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Runtime/InteropServices/NativeCallableAttribute.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Runtime/InteropServices/NativeCallableAttribute.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/NativeCallableAttribute.cs b/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/NativeCallableAttribute.cs
new file mode 100644
index 000000000..bad4d7f6a
--- /dev/null
+++ b/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/NativeCallableAttribute.cs
@@ -0,0 +1,29 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+namespace System.Runtime.InteropServices
+{
+ /// <summary>
+ /// Any method marked with NativeCallableAttribute can be directly called from
+ /// native code. The function token can be loaded to a local variable using LDFTN
+ /// and passed as a callback to native method.
+ /// </summary>
+ [AttributeUsage(AttributeTargets.Method)]
+ public sealed class NativeCallableAttribute : Attribute
+ {
+ public NativeCallableAttribute()
+ {
+ }
+
+ /// <summary>
+ /// Optional. If omitted, compiler will choose one for you.
+ /// </summary>
+ public CallingConvention CallingConvention;
+
+ /// <summary>
+ /// Optional. If omitted, then the method is native callable, but no EAT is emitted.
+ /// </summary>
+ public string EntryPoint;
+ }
+}