Removed debug

This commit is contained in:
Garry Newman 2016-10-27 21:03:49 +01:00
parent 5830ea7b82
commit 3d9c1406f7

View File

@ -20,7 +20,7 @@ internal static IntPtr Get( Action<IntPtr, IntPtr> onRunCallback, int size, Inte
{
var ptr = Marshal.AllocHGlobal( Marshal.SizeOf( typeof( Callback ) ) );
Callback.Result da = ( _, p ) => { onRunCallback( _, p ); Console.WriteLine( "Callback.Result: {0}", _.ToInt64() ); };
Callback.Result da = ( _, p ) => { onRunCallback( _, p ); };
Callback.GetSize dc = ( _ ) => { return size; };
cb.AddHandle( GCHandle.Alloc( da ) );