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:
authorFaizur Rahman <shrah@microsoft.com>2017-04-11 22:13:32 +0300
committerFaizur Rahman <shrah@microsoft.com>2017-04-14 21:07:09 +0300
commit3f4b2d1d8acda576cf9f16078bfdf7e44e09b31b (patch)
treef76788df725b17e87bddc0dd32e878c497e6569e /src/Runtime.Base
parent5b3ba17544a3bdcc34504ec7454d7967aa262306 (diff)
Add marshalling support for returning function pointers from native side as Delegates
Diffstat (limited to 'src/Runtime.Base')
-rw-r--r--src/Runtime.Base/src/System/Runtime/CalliIntrinsics.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Runtime.Base/src/System/Runtime/CalliIntrinsics.cs b/src/Runtime.Base/src/System/Runtime/CalliIntrinsics.cs
index 6ba1f0693..d23b9636a 100644
--- a/src/Runtime.Base/src/System/Runtime/CalliIntrinsics.cs
+++ b/src/Runtime.Base/src/System/Runtime/CalliIntrinsics.cs
@@ -18,6 +18,7 @@ namespace System.Runtime
internal static T Call<T>(IntPtr pfn) { throw new NotImplementedException(); }
internal static T Call<T>(IntPtr pfn, object arg0) { throw new NotImplementedException(); }
+ internal static T Call<T>(IntPtr pfn, IntPtr arg0) { throw new NotImplementedException(); }
internal static T Call<T>(IntPtr pfn, IntPtr arg0, object arg1) { throw new NotImplementedException(); }
internal static T Call<T>(IntPtr pfn, IntPtr arg0, IntPtr arg1, IntPtr arg2) { throw new NotImplementedException(); }
internal static T Call<T>(IntPtr pfn, RhFailFastReason arg0, object arg1, IntPtr arg2, IntPtr arg3) { throw new NotImplementedException(); }