diff --git a/src/Contacts/CNContactFetchRequest.cs b/src/Contacts/CNContactFetchRequest.cs index 200cdbab8550..75422a8540d7 100644 --- a/src/Contacts/CNContactFetchRequest.cs +++ b/src/Contacts/CNContactFetchRequest.cs @@ -41,7 +41,7 @@ public CNContactFetchRequest (params INativeObject [] keysToFetch) // NSObject.ConformsToProtocol won't work for *Wrapper types, like what returns ICNKeyDescriptor instances static bool ConformsToProtocol (IntPtr handle, IntPtr protocol) { - return Messaging.bool_objc_msgSend_IntPtr (handle, Selector.GetHandle ("conformsToProtocol:"), protocol); + return Messaging.bool_objc_msgSend_IntPtr (handle, Selector.GetHandle ("conformsToProtocol:"), protocol) != 0; } static NSArray Validate (params INativeObject [] keysToFetch) diff --git a/src/Foundation/NSLayoutConstraint.cs b/src/Foundation/NSLayoutConstraint.cs index c2f8cfca4b1f..7d2abe2eab9c 100644 --- a/src/Foundation/NSLayoutConstraint.cs +++ b/src/Foundation/NSLayoutConstraint.cs @@ -70,7 +70,7 @@ static public NSLayoutConstraint [] FromVisualFormat (string format, NSLayoutFor views = new NSMutableDictionary (); views [nskey] = (NSObject) value; continue; - } else if (value is INativeObject && Messaging.bool_objc_msgSend_IntPtr (((INativeObject) value).Handle, Selector.GetHandle ("isKindOfClass:"), Class.GetHandle (typeof (View)))) { + } else if (value is INativeObject && Messaging.bool_objc_msgSend_IntPtr (((INativeObject) value).Handle, Selector.GetHandle ("isKindOfClass:"), Class.GetHandle (typeof (View))) != 0) { if (views is null) views = new NSMutableDictionary (); views.LowlevelSetObject (((INativeObject) value).Handle, nskey.Handle); @@ -78,7 +78,7 @@ static public NSLayoutConstraint [] FromVisualFormat (string format, NSLayoutFor } #if !MONOMAC // This requires UILayoutSupport class which is not exist on Mac - else if (value is INativeObject && Messaging.bool_objc_msgSend_IntPtr (((INativeObject) value).Handle, Selector.GetHandle ("conformsToProtocol:"), Protocol.GetHandle (typeof (UILayoutSupport).Name))) { + else if (value is INativeObject && Messaging.bool_objc_msgSend_IntPtr (((INativeObject) value).Handle, Selector.GetHandle ("conformsToProtocol:"), Protocol.GetHandle (typeof (UILayoutSupport).Name)) != 0) { if (views is null) views = new NSMutableDictionary (); views.LowlevelSetObject (((INativeObject) value).Handle, nskey.Handle); diff --git a/src/Foundation/NSObject2.cs b/src/Foundation/NSObject2.cs index 271971ec8e06..abc64dd1fc27 100644 --- a/src/Foundation/NSObject2.cs +++ b/src/Foundation/NSObject2.cs @@ -472,15 +472,15 @@ public virtual bool ConformsToProtocol (NativeHandle protocol) #if MONOMAC if (is_wrapper) { - does = Messaging.bool_objc_msgSend_IntPtr (this.Handle, selConformsToProtocolHandle, protocol); + does = Messaging.bool_objc_msgSend_IntPtr (this.Handle, selConformsToProtocolHandle, protocol) != 0; } else { - does = Messaging.bool_objc_msgSendSuper_IntPtr (this.SuperHandle, selConformsToProtocolHandle, protocol); + does = Messaging.bool_objc_msgSendSuper_IntPtr (this.SuperHandle, selConformsToProtocolHandle, protocol) != 0; } #else if (is_wrapper) { - does = Messaging.bool_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle (selConformsToProtocol), protocol); + does = Messaging.bool_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle (selConformsToProtocol), protocol) != 0; } else { - does = Messaging.bool_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle (selConformsToProtocol), protocol); + does = Messaging.bool_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle (selConformsToProtocol), protocol) != 0; } #endif @@ -710,12 +710,12 @@ public void SetNativeField (string name, NSObject value) private void InvokeOnMainThread (Selector sel, NSObject obj, bool wait) { #if NET - Messaging.void_objc_msgSend_NativeHandle_NativeHandle_bool (this.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), sel.Handle, obj.GetHandle (), wait); + Messaging.void_objc_msgSend_NativeHandle_NativeHandle_bool (this.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), sel.Handle, obj.GetHandle (), wait ? (byte) 1 : (byte) 0); #else #if MONOMAC - Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (this.Handle, Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDoneHandle, sel.Handle, obj.GetHandle (), wait); + Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (this.Handle, Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDoneHandle, sel.Handle, obj.GetHandle (), wait ? (byte) 1 : (byte) 0); #else - Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (this.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), sel.Handle, obj.GetHandle (), wait); + Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (this.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), sel.Handle, obj.GetHandle (), wait ? (byte) 1 : (byte) 0); #endif #endif } @@ -735,14 +735,14 @@ public void BeginInvokeOnMainThread (Action action) var d = new NSAsyncActionDispatcher (action); #if NET Messaging.void_objc_msgSend_NativeHandle_NativeHandle_bool (d.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), - NSDispatcher.Selector.Handle, d.Handle, false); + NSDispatcher.Selector.Handle, d.Handle, 0); #else #if MONOMAC Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (d.Handle, Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDoneHandle, - NSDispatcher.Selector.Handle, d.Handle, false); + NSDispatcher.Selector.Handle, d.Handle, 0); #else Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (d.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), - Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, false); + Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, 0); #endif #endif } @@ -752,14 +752,14 @@ internal void BeginInvokeOnMainThread (System.Threading.SendOrPostCallback cb, o var d = new NSAsyncSynchronizationContextDispatcher (cb, state); #if NET Messaging.void_objc_msgSend_NativeHandle_NativeHandle_bool (d.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), - Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, false); + Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, 0); #else #if MONOMAC Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (d.Handle, Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDoneHandle, - NSDispatcher.Selector.Handle, d.Handle, false); + NSDispatcher.Selector.Handle, d.Handle, 0); #else Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (d.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), - Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, false); + Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, 0); #endif #endif } @@ -769,14 +769,14 @@ public void InvokeOnMainThread (Action action) using (var d = new NSActionDispatcher (action)) { #if NET Messaging.void_objc_msgSend_NativeHandle_NativeHandle_bool (d.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), - Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, true); + Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, 1); #else #if MONOMAC Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (d.Handle, Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDoneHandle, - NSDispatcher.Selector.Handle, d.Handle, true); + NSDispatcher.Selector.Handle, d.Handle, 1); #else Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (d.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), - Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, true); + Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, 1); #endif #endif } @@ -787,14 +787,14 @@ internal void InvokeOnMainThread (System.Threading.SendOrPostCallback cb, object using (var d = new NSSynchronizationContextDispatcher (cb, state)) { #if NET Messaging.void_objc_msgSend_NativeHandle_NativeHandle_bool (d.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), - Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, true); + Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, 1); #else #if MONOMAC Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (d.Handle, Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDoneHandle, - NSDispatcher.Selector.Handle, d.Handle, true); + NSDispatcher.Selector.Handle, d.Handle, 1); #else Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (d.Handle, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), - Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, true); + Selector.GetHandle (NSDispatcher.SelectorName), d.Handle, 1); #endif #endif } @@ -1017,12 +1017,12 @@ static internal void Add (NSObject handle) static void ScheduleDrain () { #if NET - Messaging.void_objc_msgSend_NativeHandle_NativeHandle_bool (class_ptr, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), Selector.GetHandle ("drain:"), NativeHandle.Zero, false); + Messaging.void_objc_msgSend_NativeHandle_NativeHandle_bool (class_ptr, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), Selector.GetHandle ("drain:"), NativeHandle.Zero, 0); #else #if MONOMAC - Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (class_ptr, Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDoneHandle, drainHandle, IntPtr.Zero, false); + Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (class_ptr, Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDoneHandle, drainHandle, IntPtr.Zero, 0); #else - Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (class_ptr, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), Selector.GetHandle ("drain:"), IntPtr.Zero, false); + Messaging.void_objc_msgSend_IntPtr_IntPtr_bool (class_ptr, Selector.GetHandle (Selector.PerformSelectorOnMainThreadWithObjectWaitUntilDone), Selector.GetHandle ("drain:"), IntPtr.Zero, 0); #endif #endif } diff --git a/src/Foundation/NSSecureCoding.cs b/src/Foundation/NSSecureCoding.cs index 7b909fd12c1b..30c523180085 100644 --- a/src/Foundation/NSSecureCoding.cs +++ b/src/Foundation/NSSecureCoding.cs @@ -54,15 +54,15 @@ internal static bool SupportsSecureCoding (IntPtr ptr) if (secure_coding == IntPtr.Zero) return false; #if MONOMAC - if (!Messaging.bool_objc_msgSend_IntPtr (ptr, Selector.GetHandle ("conformsToProtocol:"), secure_coding)) + if (Messaging.bool_objc_msgSend_IntPtr (ptr, Selector.GetHandle ("conformsToProtocol:"), secure_coding) == 0) return false; - return Messaging.bool_objc_msgSend (ptr, Selector.GetHandle ("supportsSecureCoding")); + return Messaging.bool_objc_msgSend (ptr, Selector.GetHandle ("supportsSecureCoding")) != 0; #else - if (!Messaging.bool_objc_msgSend_IntPtr (ptr, selConformsToProtocolHandle, secure_coding)) + if (Messaging.bool_objc_msgSend_IntPtr (ptr, selConformsToProtocolHandle, secure_coding) == 0) return false; - return Messaging.bool_objc_msgSend (ptr, selSupportsSecureCodingHandle); + return Messaging.bool_objc_msgSend (ptr, selSupportsSecureCodingHandle) != 0; #endif } } diff --git a/src/Foundation/NSString2.cs b/src/Foundation/NSString2.cs index ade32d911f1c..6671eeaad84d 100644 --- a/src/Foundation/NSString2.cs +++ b/src/Foundation/NSString2.cs @@ -41,12 +41,12 @@ public partial class NSString : IComparable { public NSData Encode (NSStringEncoding enc, bool allowLossyConversion = false) { #if NET - return new NSData (Messaging.NativeHandle_objc_msgSend_NativeHandle_bool (Handle, Selector.GetHandle (selDataUsingEncodingAllow), (IntPtr) (int) enc, allowLossyConversion)); + return new NSData (Messaging.NativeHandle_objc_msgSend_NativeHandle_bool (Handle, Selector.GetHandle (selDataUsingEncodingAllow), (IntPtr) (int) enc, allowLossyConversion ? (byte) 1 : (byte) 0)); #else #if MONOMAC - return new NSData (Messaging.IntPtr_objc_msgSend_IntPtr_bool (Handle, selDataUsingEncodingAllowHandle, (IntPtr) (int) enc, allowLossyConversion)); + return new NSData (Messaging.IntPtr_objc_msgSend_IntPtr_bool (Handle, selDataUsingEncodingAllowHandle, (IntPtr) (int) enc, allowLossyConversion ? (byte) 1 : (byte) 0)); #else - return new NSData (Messaging.IntPtr_objc_msgSend_IntPtr_bool (Handle, Selector.GetHandle (selDataUsingEncodingAllow), (IntPtr) (int) enc, allowLossyConversion)); + return new NSData (Messaging.IntPtr_objc_msgSend_IntPtr_bool (Handle, Selector.GetHandle (selDataUsingEncodingAllow), (IntPtr) (int) enc, allowLossyConversion ? (byte) 1 : (byte) 0)); #endif #endif } diff --git a/src/GameplayKit/GKPrimitives.cs b/src/GameplayKit/GKPrimitives.cs index 1310018e9c86..e8752ac967ef 100644 --- a/src/GameplayKit/GKPrimitives.cs +++ b/src/GameplayKit/GKPrimitives.cs @@ -67,18 +67,21 @@ public struct GKQuad { #endif [StructLayout (LayoutKind.Sequential)] public struct GKTriangle { - [MarshalAs (UnmanagedType.ByValArray, SizeConst = 3)] - Vector3 [] points; + Vector3 point1; + Vector3 point2; + Vector3 point3; public Vector3 [] Points { get { - return points ?? (points = new Vector3 [3]); + return new Vector3 [] { point1, point2, point3 }; } set { if (value is null) ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (value)); if (value.Length != 3) throw new ArgumentOutOfRangeException (nameof (value), "The length of the Value array must be 3"); - points = value; + point1 = value [0]; + point2 = value [1]; + point3 = value [2]; } } } diff --git a/src/Metal/MTLCompat.cs b/src/Metal/MTLCompat.cs index f17564f91095..38a0a6ca03cc 100644 --- a/src/Metal/MTLCompat.cs +++ b/src/Metal/MTLCompat.cs @@ -18,7 +18,7 @@ public MTLSharedTextureHandle () { } } #if MONOMAC - public static partial class MTLDevice_Extensions { + public unsafe static partial class MTLDevice_Extensions { [BindingImpl (BindingImplOptions.Optimizable)] public static IMTLCounterSet[] GetIMTLCounterSets (this IMTLDevice This) { @@ -33,7 +33,7 @@ public static IMTLCounterSet[] GetIMTLCounterSets (this IMTLDevice This) ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (descriptor)); var errorValue = NativeHandle.Zero; - var rv = global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_ref_IntPtr (This.Handle, Selector.GetHandle ("newCounterSampleBufferWithDescriptor:error:"), descriptor.Handle, ref errorValue); + var rv = global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_ref_IntPtr (This.Handle, Selector.GetHandle ("newCounterSampleBufferWithDescriptor:error:"), descriptor.Handle, &errorValue); var ret = Runtime.GetINativeObject (rv, owns: false); error = Runtime.GetNSObject (errorValue); @@ -48,7 +48,7 @@ public static void SampleCounters (this IMTLComputeCommandEncoder This, IMTLCoun { if (sampleBuffer is null) ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (sampleBuffer)); - global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_UIntPtr_bool (This.Handle, Selector.GetHandle ("sampleCountersInBuffer:atSampleIndex:withBarrier:"), sampleBuffer.Handle, (UIntPtr) sampleIndex, barrier); + global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_UIntPtr_bool (This.Handle, Selector.GetHandle ("sampleCountersInBuffer:atSampleIndex:withBarrier:"), sampleBuffer.Handle, (UIntPtr) sampleIndex, barrier ? (byte) 1 : (byte) 0); } } #endif // MONOMAC diff --git a/src/Metal/MTLDevice.cs b/src/Metal/MTLDevice.cs index 834b43f86b70..152d27e26136 100644 --- a/src/Metal/MTLDevice.cs +++ b/src/Metal/MTLDevice.cs @@ -311,13 +311,13 @@ public static void ConvertSparsePixelRegions (this IMTLDevice This, MTLRegion [] #if !NET [return: Release] [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)] - public static IMTLLibrary? CreateLibrary (this IMTLDevice This, global::CoreFoundation.DispatchData data, out NSError? error) + public unsafe static IMTLLibrary? CreateLibrary (this IMTLDevice This, global::CoreFoundation.DispatchData data, out NSError? error) { if (data is null) ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (data)); var errorValue = NativeHandle.Zero; - var ret = Runtime.GetINativeObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_ref_IntPtr (This.Handle, Selector.GetHandle ("newLibraryWithData:error:"), data.Handle, ref errorValue), true); + var ret = Runtime.GetINativeObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_ref_IntPtr (This.Handle, Selector.GetHandle ("newLibraryWithData:error:"), data.Handle, &errorValue), true); error = Runtime.GetNSObject (errorValue); return ret; } diff --git a/src/ObjCRuntime/Runtime.cs b/src/ObjCRuntime/Runtime.cs index aee3be727fad..c108a4fb0b77 100644 --- a/src/ObjCRuntime/Runtime.cs +++ b/src/ObjCRuntime/Runtime.cs @@ -1725,7 +1725,7 @@ static IntPtr CreateNSObject (IntPtr type_gchandle, IntPtr handle, NSObject.Flag target_type = typeof (T); else if (target_type.IsSubclassOf (typeof (T))) { // do nothing, this is fine. - } else if (Messaging.bool_objc_msgSend_IntPtr (ptr, Selector.GetHandle ("isKindOfClass:"), Class.GetHandle (typeof (T)))) { + } else if (Messaging.bool_objc_msgSend_IntPtr (ptr, Selector.GetHandle ("isKindOfClass:"), Class.GetHandle (typeof (T))) != 0) { // If the instance itself claims it's an instance of the provided (generic argument) type, // then we believe the instance. See bug #20692 for a test case. target_type = typeof (T); @@ -1804,7 +1804,7 @@ static IntPtr CreateNSObject (IntPtr type_gchandle, IntPtr handle, NSObject.Flag // nothing to do } else if (dynamic_type.IsSubclassOf (target_type)) { target_type = dynamic_type; - } else if (Messaging.bool_objc_msgSend_IntPtr (ptr, Selector.GetHandle ("isKindOfClass:"), Class.GetHandle (target_type))) { + } else if (Messaging.bool_objc_msgSend_IntPtr (ptr, Selector.GetHandle ("isKindOfClass:"), Class.GetHandle (target_type)) != 0) { // nothing to do } else { target_type = dynamic_type; diff --git a/src/UIKit/UIToolbar.cs b/src/UIKit/UIToolbar.cs index 5618c8bfd3a1..dd47bde21683 100644 --- a/src/UIKit/UIToolbar.cs +++ b/src/UIKit/UIToolbar.cs @@ -25,15 +25,15 @@ public virtual void SetItems (UIBarButtonItem[] items, bool animated) #if NET if (IsDirectBinding) { - ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_bool (this.Handle, Selector.GetHandle ("setItems:animated:"), nsa_items.Handle, animated); + ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_bool (this.Handle, Selector.GetHandle ("setItems:animated:"), nsa_items.Handle, animated ? (byte) 1 : (byte) 0); } else { - ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_bool (this.SuperHandle, Selector.GetHandle ("setItems:animated:"), nsa_items.Handle, animated); + ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_bool (this.SuperHandle, Selector.GetHandle ("setItems:animated:"), nsa_items.Handle, animated ? (byte) 1 : (byte) 0); } #else if (IsDirectBinding) { - ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_bool (this.Handle, Selector.GetHandle ("setItems:animated:"), nsa_items.Handle, animated); + ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_bool (this.Handle, Selector.GetHandle ("setItems:animated:"), nsa_items.Handle, animated ? (byte) 1 : (byte) 0); } else { - ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_bool (this.SuperHandle, Selector.GetHandle ("setItems:animated:"), nsa_items.Handle, animated); + ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_bool (this.SuperHandle, Selector.GetHandle ("setItems:animated:"), nsa_items.Handle, animated ? (byte) 1 : (byte) 0); } #endif nsa_items.Dispose (); diff --git a/src/bgen/Generator.cs b/src/bgen/Generator.cs index 53cdfb8e39b6..2788adcad96e 100644 --- a/src/bgen/Generator.cs +++ b/src/bgen/Generator.cs @@ -240,14 +240,21 @@ public bool IsDictionaryContainerType (Type t) // for example "UIView" -> "IntPtr" string ParameterGetMarshalType (MarshalInfo mai, bool formatted = false) { + // formatted: used as an actual type name + // !formatted: used in the method name if (mai.IsAligned) return "IntPtr"; if (mai.Type.IsEnum) return PrimitiveType (mai.Type, formatted); - if (IsWrappedType (mai.Type)) - return mai.Type.IsByRef ? "ref " + NativeHandleType : NativeHandleType; + if (IsWrappedType (mai.Type)) { + if (!mai.Type.IsByRef) + return NativeHandleType; + if (formatted) + return NativeHandleType + "*"; + return "ref " + NativeHandleType; + } if (mai.Type.Namespace == "System") { if (mai.Type.Name == "nint") @@ -284,7 +291,15 @@ string ParameterGetMarshalType (MarshalInfo mai, bool formatted = false) if (mai.Type.IsByRef && mai.Type.GetElementType ().IsValueType) { Type elementType = mai.Type.GetElementType (); - return (mai.IsOut ? "out " : "ref ") + (formatted ? FormatType (null, elementType) : elementType.Name); + if (formatted) { + if (elementType == TypeManager.System_Boolean) + return "byte*"; + else if (elementType == TypeManager.System_Char) + return "ushort*"; + return FormatType (null, elementType) + "*"; + } + + return (mai.IsOut ? "out " : "ref ") + elementType.Name; } // Pass "ValueType*" directly @@ -306,8 +321,11 @@ string ParameterGetMarshalType (MarshalInfo mai, bool formatted = false) // Edit the table in the "void Go ()" routine // - if (mai.Type.IsByRef && mai.Type.GetElementType ().IsValueType == false) + if (mai.Type.IsByRef && mai.Type.GetElementType ().IsValueType == false) { + if (formatted) + return NativeHandleType + "*"; return "ref " + NativeHandleType; + } if (mai.Type.IsGenericParameter) return NativeHandleType; @@ -845,13 +863,10 @@ public TrampolineInfo MakeTrampoline (Type t) // Returns the actual way in which the type t must be marshalled // for example "UIView foo" is generated as "foo.Handle" // - public string MarshalParameter (MethodInfo mi, ParameterInfo pi, bool null_allowed_override, PropertyInfo propInfo = null, bool castEnum = true, bool usingBlittableNativeTypes = false, StringBuilder convs = null) + public string MarshalParameter (MethodInfo mi, ParameterInfo pi, bool null_allowed_override, PropertyInfo propInfo = null, bool castEnum = true, StringBuilder convs = null) { - if (pi.ParameterType.IsByRef && pi.ParameterType.GetElementType ().IsValueType == false) { - if (usingBlittableNativeTypes) - return "&" + pi.Name + "Value"; - return "ref " + pi.Name + "Value"; - } + if (pi.ParameterType.IsByRef && pi.ParameterType.GetElementType ().IsValueType == false) + return "&" + pi.Name + "Value"; if (HasBindAsAttribute (pi)) return string.Format ("nsb_{0}.GetHandle ()", pi.Name); @@ -898,7 +913,7 @@ public string MarshalParameter (MethodInfo mi, ParameterInfo pi, bool null_allow } if (pi.ParameterType.IsValueType) { - if (usingBlittableNativeTypes && pi.ParameterType == TypeManager.System_Boolean) + if (pi.ParameterType == TypeManager.System_Boolean) return safe_name + " ? (byte) 1 : (byte) 0"; return safe_name; } @@ -927,17 +942,15 @@ public string MarshalParameter (MethodInfo mi, ParameterInfo pi, bool null_allow if (nullable is not null) { return $"converted_{safe_name}"; } else if (et.IsValueType) { - if (usingBlittableNativeTypes) { - if (et == TypeManager.System_Boolean) { - if (pi.IsOut) - convs!.Append ($"{safe_name} = false;"); - return $"(byte*) global::System.Runtime.CompilerServices.Unsafe.AsPointer (ref {safe_name})"; - } - var blittableType = FormatType (mi.DeclaringType, et); + if (et == TypeManager.System_Boolean) { if (pi.IsOut) - convs!.Append ($"{safe_name} = default ({blittableType});"); - return $"({blittableType}*) global::System.Runtime.CompilerServices.Unsafe.AsPointer<{blittableType}> (ref {safe_name})"; + convs!.Append ($"{safe_name} = false;"); + return $"(byte*) global::System.Runtime.CompilerServices.Unsafe.AsPointer (ref {safe_name})"; } + var blittableType = FormatType (mi.DeclaringType, et); + if (pi.IsOut) + convs!.Append ($"{safe_name} = default ({blittableType});"); + return $"({blittableType}*) global::System.Runtime.CompilerServices.Unsafe.AsPointer<{blittableType}> (ref {safe_name})"; } return (pi.IsOut ? "out " : "ref ") + safe_name; } @@ -1090,11 +1103,17 @@ void RegisterMethod (bool need_stret, MethodInfo mi, string method_name, bool al try { var parameterType = ParameterGetMarshalType (new MarshalInfo (this, mi, pi), true); - if (parameterType == "bool" || parameterType == "out bool" || parameterType == "ref bool") - b.Append ("[MarshalAs (UnmanagedType.I1)] "); - else if (parameterType == "char" || parameterType == "out char" || parameterType == "ref char") - b.Append ("[MarshalAs (UnmanagedType.U2)] "); - b.Append (parameterType); + if (parameterType == "bool") { + b.Append ("byte"); + } else if (parameterType == "out bool" || parameterType == "ref bool") { + b.Append ("byte* "); + } else if (parameterType == "char") { + b.Append ("ushort"); + } else if (parameterType == "out char" || parameterType == "ref char") { + b.Append ("ushort*"); + } else { + b.Append (parameterType); + } } catch (BindingException ex) { throw new BindingException (1079, ex.Error, ex, ex.Message, pi.Name.GetSafeParamName (), mi.DeclaringType, mi.Name); } @@ -1103,7 +1122,7 @@ void RegisterMethod (bool need_stret, MethodInfo mi, string method_name, bool al } if (ShouldMarshalNativeExceptions (mi)) - b.Append (", out IntPtr exception_gchandle"); + b.Append (", IntPtr* exception_gchandle"); string entry_point; if (method_name.IndexOf ("objc_msgSendSuper", StringComparison.Ordinal) != -1) { @@ -1122,13 +1141,13 @@ void RegisterMethod (bool need_stret, MethodInfo mi, string method_name, bool al var returnType = need_stret ? "void" : ParameterGetMarshalType (new MarshalInfo (this, mi), true); if (returnType == "bool") - print (m, "\t\t[return: MarshalAs (UnmanagedType.I1)]"); + returnType = "byte"; else if (returnType == "char") - print (m, "\t\t[return: MarshalAs (UnmanagedType.U2)]"); + returnType = "ushort"; print (m, "\t\tpublic unsafe extern static {0} {1} ({3}IntPtr receiver, IntPtr selector{2});", returnType, method_name, b.ToString (), - need_stret ? (aligned ? "IntPtr" : "out " + FormatTypeUsedIn ("ObjCRuntime", mi.ReturnType)) + " retval, " : ""); + need_stret ? (aligned ? "IntPtr" : FormatTypeUsedIn ("ObjCRuntime", mi.ReturnType)) + "* retval, " : ""); } bool IsNativeEnum (Type type) @@ -1790,8 +1809,7 @@ void GenerateTrampolinesForQueue (TrampolineInfo [] queue) convs: out convs, disposes: out disposes, by_ref_processing: out by_ref_processing, - by_ref_init: out by_ref_init, - usingBlittableNativeTypes: true); + by_ref_init: out by_ref_init); if (by_ref_init.Length > 0) print (by_ref_init.ToString ()); @@ -3163,10 +3181,10 @@ void GenerateInvoke (bool stret, bool supercall, MethodInfo mi, MemberInformatio } if (ShouldMarshalNativeExceptions (mi)) - args += ", out exception_gchandle"; + args += ", &exception_gchandle"; if (stret) { - string ret_val = aligned ? "aligned_ret" : "out ret"; + string ret_val = aligned ? "(IntPtr*) aligned_ret" : "&ret"; if (minfo.is_static) print ("{0} ({5}, class_ptr, {3}{4});", sig, "/*unusued*/", "/*unusued*/", selector_field, args, ret_val); else @@ -3411,7 +3429,7 @@ bool Is64BitiOSOnly (ICustomAttributeProvider provider) // @convs: conversions to perform before the invocation // @disposes: dispose operations to perform after the invocation // @by_ref_processing - void GenerateTypeLowering (MethodInfo mi, bool null_allowed_override, out StringBuilder args, out StringBuilder convs, out StringBuilder disposes, out StringBuilder by_ref_processing, out StringBuilder by_ref_init, PropertyInfo propInfo = null, bool castEnum = true, bool usingBlittableNativeTypes = false) + void GenerateTypeLowering (MethodInfo mi, bool null_allowed_override, out StringBuilder args, out StringBuilder convs, out StringBuilder disposes, out StringBuilder by_ref_processing, out StringBuilder by_ref_init, PropertyInfo propInfo = null, bool castEnum = true) { args = new StringBuilder (); convs = new StringBuilder (); @@ -3426,7 +3444,7 @@ void GenerateTypeLowering (MethodInfo mi, bool null_allowed_override, out String if (!IsTarget (pi)) { // Construct invocation args.Append (", "); - args.Append (MarshalParameter (mi, pi, null_allowed_override, propInfo, castEnum, usingBlittableNativeTypes, convs)); + args.Append (MarshalParameter (mi, pi, null_allowed_override, propInfo, castEnum, convs)); if (pi.ParameterType.IsByRef) { var et = pi.ParameterType.GetElementType (); @@ -3744,6 +3762,8 @@ public void GenerateMethodBody (MemberInformation minfo, MethodInfo mi, string s (mi.ReturnType.IsSubclassOf (TypeManager.System_Delegate)) || (AttributeManager.HasAttribute (mi.ReturnParameter)) || (IsNativeEnum (mi.ReturnType)) || + (mi.ReturnType == TypeManager.System_Boolean) || + (mi.ReturnType == TypeManager.System_Char) || (mi.Name != "Constructor" && by_ref_processing.Length > 0 && mi.ReturnType != TypeManager.System_Void); if (use_temp_return) { @@ -3762,6 +3782,10 @@ public void GenerateMethodBody (MemberInformation minfo, MethodInfo mi, string s var bindAsAttrib = GetBindAsAttribute (minfo.mi); // tricky, e.g. when an nullable `NSNumber[]` is bound as a `float[]`, since FormatType and bindAsAttrib have not clue about the original nullability print ("{0} ret;", FormatType (bindAsAttrib.Type.DeclaringType, bindAsAttrib.Type)); + } else if (mi.ReturnType == TypeManager.System_Boolean) { + print ("byte ret;"); + } else if (mi.ReturnType == TypeManager.System_Char) { + print ("ushort ret;"); } else { var isClassType = mi.ReturnType.IsClass || mi.ReturnType.IsInterface; var nullableReturn = isClassType ? "?" : string.Empty; @@ -3883,6 +3907,10 @@ public void GenerateMethodBody (MemberInformation minfo, MethodInfo mi, string s indent--; print ("Marshal.FreeHGlobal (ret_alloced);"); print ("return ret;"); + } else if (mi.ReturnType == TypeManager.System_Boolean) { + print ("return ret != 0;"); + } else if (mi.ReturnType == TypeManager.System_Char) { + print ("return (char) ret;"); } else { // we can't be 100% confident that the ObjC API annotations are correct so we always null check inside generated code print ("return ret!;"); @@ -5139,7 +5167,7 @@ void GenerateProtocolTypes (Type type, string class_visibility, string TypeName, if (include_extensions) { // extension methods PrintAttributes (type, preserve: true, advice: true); - print ("{1} static partial class {0}_Extensions {{", TypeName, class_visibility); + print ("{1} unsafe static partial class {0}_Extensions {{", TypeName, class_visibility); indent++; foreach (var mi in optionalInstanceMethods) GenerateMethod (type, mi, false, null, false, false, true); @@ -5181,7 +5209,7 @@ void GenerateProtocolTypes (Type type, string class_visibility, string TypeName, } PrintPreserveAttribute (type); - print ("internal sealed class {0}Wrapper : BaseWrapper, I{0} {{", TypeName); + print ("internal unsafe sealed class {0}Wrapper : BaseWrapper, I{0} {{", TypeName); indent++; // ctor (IntPtr, bool) print ("[Preserve (Conditional = true)]"); @@ -6585,7 +6613,7 @@ public void Generate (Type type) print ("return {0} is not null;", mi.Name.PascalCase ()); --indent; } - print ("return global::" + ns.Messaging + ".bool_objc_msgSendSuper_IntPtr (SuperHandle, " + selRespondsToSelector + ", selHandle);"); + print ("return global::" + ns.Messaging + ".bool_objc_msgSendSuper_IntPtr (SuperHandle, " + selRespondsToSelector + ", selHandle) != 0;"); --indent; print ("}"); @@ -6593,7 +6621,7 @@ public void Generate (Type type) // bool_objc_msgSendSuper_IntPtr: for respondsToSelector: if (!send_methods.ContainsKey ("bool_objc_msgSendSuper_IntPtr")) { print (m, "[DllImport (LIBOBJC_DYLIB, EntryPoint=\"objc_msgSendSuper\")]"); - print (m, "public extern static bool bool_objc_msgSendSuper_IntPtr (IntPtr receiever, IntPtr selector, IntPtr arg1);"); + print (m, "public extern static byte bool_objc_msgSendSuper_IntPtr (IntPtr receiever, IntPtr selector, IntPtr arg1);"); RegisterMethodName ("bool_objc_msgSendSuper_IntPtr"); } } diff --git a/tests/bindings-test/iOS/bindings-test.csproj b/tests/bindings-test/iOS/bindings-test.csproj index f080cc98232f..4028438e54dd 100644 --- a/tests/bindings-test/iOS/bindings-test.csproj +++ b/tests/bindings-test/iOS/bindings-test.csproj @@ -44,6 +44,7 @@ + diff --git a/tests/bindings-test/macOS/bindings-test.csproj b/tests/bindings-test/macOS/bindings-test.csproj index 54fc407d6b5d..74b7ffa2bbfa 100644 --- a/tests/bindings-test/macOS/bindings-test.csproj +++ b/tests/bindings-test/macOS/bindings-test.csproj @@ -104,6 +104,7 @@ + diff --git a/tests/cecil-tests/BlittablePInvokes.KnownFailures.cs b/tests/cecil-tests/BlittablePInvokes.KnownFailures.cs index e839212b64d8..6cd1237099d6 100644 --- a/tests/cecil-tests/BlittablePInvokes.KnownFailures.cs +++ b/tests/cecil-tests/BlittablePInvokes.KnownFailures.cs @@ -44,310 +44,16 @@ public partial class BlittablePInvokes { "CoreFoundation.CFRunLoopExitReason CoreFoundation.CFRunLoop::CFRunLoopRunInMode(System.IntPtr,System.Double,System.Boolean)", "CoreGraphics.CGAffineTransform CoreGraphics.CGPDFPage::CGPDFPageGetDrawingTransform(System.IntPtr,CoreGraphics.CGPDFBox,CoreGraphics.CGRect,System.Int32,System.Boolean)", "CoreGraphics.CGRect CoreMedia.CMFormatDescription::CMVideoFormatDescriptionGetCleanAperture(System.IntPtr,System.Boolean)", - "CoreGraphics.CGRect ObjCRuntime.Messaging::CGRect_objc_msgSend_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "CoreGraphics.CGRect ObjCRuntime.Messaging::CGRect_objc_msgSend_UIntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.IntPtr,System.Boolean)", - "CoreGraphics.CGRect ObjCRuntime.Messaging::CGRect_objc_msgSend_UIntPtr_out_NSRange_bool(System.IntPtr,System.IntPtr,System.UIntPtr,Foundation.NSRange&,System.Boolean)", - "CoreGraphics.CGRect ObjCRuntime.Messaging::CGRect_objc_msgSendSuper_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "CoreGraphics.CGRect ObjCRuntime.Messaging::CGRect_objc_msgSendSuper_UIntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.IntPtr,System.Boolean)", - "CoreGraphics.CGRect ObjCRuntime.Messaging::CGRect_objc_msgSendSuper_UIntPtr_out_NSRange_bool(System.IntPtr,System.IntPtr,System.UIntPtr,Foundation.NSRange&,System.Boolean)", "CoreGraphics.CGSize CoreMedia.CMFormatDescription::CMVideoFormatDescriptionGetPresentationDimensions(System.IntPtr,System.Boolean,System.Boolean)", - "CoreGraphics.CGSize ObjCRuntime.Messaging::CGSize_objc_msgSend_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "CoreGraphics.CGSize ObjCRuntime.Messaging::CGSize_objc_msgSend_CGSize_bool_bool_UIntPtr(System.IntPtr,System.IntPtr,CoreGraphics.CGSize,System.Boolean,System.Boolean,System.UIntPtr)", - "CoreGraphics.CGSize ObjCRuntime.Messaging::CGSize_objc_msgSendSuper_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "CoreGraphics.CGSize ObjCRuntime.Messaging::CGSize_objc_msgSendSuper_CGSize_bool_bool_UIntPtr(System.IntPtr,System.IntPtr,CoreGraphics.CGSize,System.Boolean,System.Boolean,System.UIntPtr)", "CoreMedia.CMSampleBufferError CoreMedia.CMSampleBuffer::CMAudioSampleBufferCreateWithPacketDescriptions(System.IntPtr,System.IntPtr,System.Boolean,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,CoreMedia.CMTime,AudioToolbox.AudioStreamPacketDescription[],System.IntPtr&)", "CoreMedia.CMSampleBufferError CoreMedia.CMSampleBuffer::CMSampleBufferCreateForImageBuffer(System.IntPtr,System.IntPtr,System.Boolean,System.IntPtr,System.IntPtr,System.IntPtr,CoreMedia.CMSampleTimingInfo&,System.IntPtr&)", - "CoreMedia.CMTime ObjCRuntime.Messaging::CMTime_objc_msgSend_CMTime_out_Boolean(System.IntPtr,System.IntPtr,CoreMedia.CMTime,System.Boolean&)", - "CoreMedia.CMTime ObjCRuntime.Messaging::CMTime_objc_msgSendSuper_CMTime_out_Boolean(System.IntPtr,System.IntPtr,CoreMedia.CMTime,System.Boolean&)", - "Foundation.NSRange ObjCRuntime.Messaging::NSRange_objc_msgSend_NativeHandle_IntPtr_NativeHandle_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "Foundation.NSRange ObjCRuntime.Messaging::NSRange_objc_msgSend_NativeHandle_IntPtr_NativeHandle_bool_IntPtr_out_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr,System.IntPtr&)", - "Foundation.NSRange ObjCRuntime.Messaging::NSRange_objc_msgSend_NativeHandle_NSRange_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Foundation.NSRange,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "Foundation.NSRange ObjCRuntime.Messaging::NSRange_objc_msgSendSuper_NativeHandle_IntPtr_NativeHandle_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "Foundation.NSRange ObjCRuntime.Messaging::NSRange_objc_msgSendSuper_NativeHandle_IntPtr_NativeHandle_bool_IntPtr_out_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr,System.IntPtr&)", - "Foundation.NSRange ObjCRuntime.Messaging::NSRange_objc_msgSendSuper_NativeHandle_NSRange_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Foundation.NSRange,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "GameplayKit.GKTriangle ObjCRuntime.Messaging::xamarin_simd__GKTriangle_objc_msgSend_UIntPtr(System.IntPtr,System.IntPtr,System.UIntPtr)", - "GameplayKit.GKTriangle ObjCRuntime.Messaging::xamarin_simd__GKTriangle_objc_msgSendSuper_UIntPtr(System.IntPtr,System.IntPtr,System.UIntPtr)", "GLKit.GLKVertexAttributeParameters GLKit.GLKVertexAttributeParameters::FromVertexFormat_(System.UIntPtr)", + "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_AudioComponentDescription_ref_NativeHandle(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription,ObjCRuntime.NativeHandle*)", + "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_AudioComponentDescription_UInt32_ref_NativeHandle(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription,System.UInt32,ObjCRuntime.NativeHandle*)", "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_AudioComponentDescription(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_AudioComponentDescription_ref_NativeHandle(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_AudioComponentDescription_UInt32_ref_NativeHandle(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription,System.UInt32,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_bool_bool(System.IntPtr,System.IntPtr,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_bool_bool_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_bool_UIntPtr_bool_UIntPtr(System.IntPtr,System.IntPtr,System.Boolean,System.UIntPtr,System.Boolean,System.UIntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_CGAffineTransform_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGAffineTransform,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_CGPoint_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_CGPoint_NativeHandle_NativeHandle_UIntPtr_bool_CGRect(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean,CoreGraphics.CGRect)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_CGPoint_nfloat_nfloat_nfloat_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_CGRect_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_CGRect_bool_UIEdgeInsets(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Boolean,UIKit.UIEdgeInsets)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_CGRect_UIntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.UIntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_CGRect_UIntPtr_UIntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.UIntPtr,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_CGSize_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGSize,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_CGSize_int_bool_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGSize,System.Int32,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_Double_bool(System.IntPtr,System.IntPtr,System.Double,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_Double_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Double,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_Double_Double_bool_int(System.IntPtr,System.IntPtr,System.Double,System.Double,System.Boolean,System.Int32)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_Double_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,System.Double,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_float_bool_bool(System.IntPtr,System.IntPtr,System.Single,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_float_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_float_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_float_float_bool_float_float_int_float(System.IntPtr,System.IntPtr,System.Single,System.Single,System.Boolean,System.Single,System.Single,System.Int32,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_float_float_bool_float_float_UIntPtr_float(System.IntPtr,System.IntPtr,System.Single,System.Single,System.Boolean,System.Single,System.Single,System.UIntPtr,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_float_float_bool_int_float_float_float_float_int_float(System.IntPtr,System.IntPtr,System.Single,System.Single,System.Boolean,System.Int32,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_int_bool(System.IntPtr,System.IntPtr,System.Int32,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_int_CGSize_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Int32,CoreGraphics.CGSize,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_int_int_NativeHandle_int_int_int_int_bool_bool_bool_bool(System.IntPtr,System.IntPtr,System.Int32,System.Int32,ObjCRuntime.NativeHandle,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_Int64_short_bool(System.IntPtr,System.IntPtr,System.Int64,System.Int16,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_IntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_IntPtr_IntPtr_IntPtr_IntPtr_IntPtr_bool_bool_NativeHandle_IntPtr_IntPtr(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_IntPtr_IntPtr_IntPtr_IntPtr_IntPtr_bool_bool_NativeHandle_UIntPtr_IntPtr_IntPtr(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,System.UIntPtr,System.IntPtr,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_IntPtr_NativeHandle_bool(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_IntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_IntPtr_UIntPtr_float_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr,System.Single,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_bool_UIntPtr_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,ObjCRuntime.NativeHandle,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_bool_UIntPtr_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,ObjCRuntime.NativeHandle,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_bool_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_bool_bool_bool_UIntPtr_UIntPtr_Double(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.UIntPtr,System.UIntPtr,System.Double)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_bool_Double(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.Double)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_bool_NativeHandle_int(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,System.Int32)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_bool_NativeHandle_int_int_int_int_int_bool_bool_bool_bool_UInt16_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.UInt16,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_bool_NativeHandle_NativeHandle_UInt32_bool_bool_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_bool_NativeHandle_NativeHandle_UInt32_bool_bool_bool_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_bool_nfloat(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.Runtime.InteropServices.NFloat)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_bool_UIntPtr_UIntPtr_UIntPtr_Double_Double(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Double,System.Double)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_IntPtr_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_NativeHandle_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_UIntPtr_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,System.UIntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_UIntPtr_UIntPtr_Double_Double(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,System.UIntPtr,System.Double,System.Double)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_UIntPtr_UIntPtr_int(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,System.UIntPtr,System.Int32)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_bool_UIntPtr_UIntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,System.UIntPtr,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_CGRect_int_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,System.Int32,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_CGSize_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGSize,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_Double_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_Double_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_Double_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_Double_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_float_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Single,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_float_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Single,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_float_float_float_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Single,System.Single,System.Single,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_float_float_float_bool_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Single,System.Single,System.Single,System.Boolean,System.UIntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_int_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Int32,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_IntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_IntPtr_IntPtr_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_bool_bool_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_bool_int(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.Int32)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_bool_UIntPtr_ref_NSRange(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,Foundation.NSRange&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_int_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Int32,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_IntPtr_bool_IntPtr_IntPtr_IntPtr_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_int_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Int32,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_UIntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_ref_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_ref_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_bool_bool_UIntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean,System.Boolean,System.UIntPtr,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_NSRange_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Foundation.NSRange,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_UInt32_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UInt32,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_UIntPtr_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_UIntPtr_NativeHandle_out_Boolean_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,System.Boolean&,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_UIntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_UIntPtr_UIntPtr_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_UIntPtr_UIntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_NativeHandle_UIntPtr_UIntPtr_UIntPtr_UIntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_nfloat_CGSize_bool(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,CoreGraphics.CGSize,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_nfloat_Double_bool(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Double,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_nfloat_nfloat_bool(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_nfloat_nfloat_nfloat_Double_bool(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UInt16_bool_bool(System.IntPtr,System.IntPtr,System.UInt16,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UInt32_CGSize_bool_NativeHandle(System.IntPtr,System.IntPtr,System.UInt32,CoreGraphics.CGSize,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UInt64_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,System.UInt64,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_bool_ref_NSRange(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean,Foundation.NSRange&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_CGPoint_UIntPtr_Double_IntPtr_NativeHandle_NativeHandle_NativeHandle_bool_UInt16(System.IntPtr,System.IntPtr,System.UIntPtr,CoreGraphics.CGPoint,System.UIntPtr,System.Double,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.UInt16)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_Double_bool_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,System.Double,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_Double_UInt32_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.Double,System.UInt32,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_out_NSRange_bool(System.IntPtr,System.IntPtr,System.UIntPtr,Foundation.NSRange&,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_UIntPtr_NativeHandle_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_UIntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_UIntPtr_UIntPtr_bool_bool_bool_bool_float(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_UIntPtr_UIntPtr_bool_bool_bool_bool_float_UInt64(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.UInt64)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_UIntPtr_UIntPtr_bool_bool_bool_float(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Boolean,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_UIntPtr_UIntPtr_bool_bool_float(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSend_UIntPtr_UIntPtr_UIntPtr_UIntPtr_float_bool_bool_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Single,System.Boolean,System.Boolean,System.Boolean)", + "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_AudioComponentDescription_ref_NativeHandle(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription,ObjCRuntime.NativeHandle*)", + "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_AudioComponentDescription_UInt32_ref_NativeHandle(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription,System.UInt32,ObjCRuntime.NativeHandle*)", "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_AudioComponentDescription(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_AudioComponentDescription_ref_NativeHandle(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_AudioComponentDescription_UInt32_ref_NativeHandle(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription,System.UInt32,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_bool_bool(System.IntPtr,System.IntPtr,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_bool_bool_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_bool_UIntPtr_bool_UIntPtr(System.IntPtr,System.IntPtr,System.Boolean,System.UIntPtr,System.Boolean,System.UIntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_CGAffineTransform_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGAffineTransform,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_CGPoint_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_CGPoint_NativeHandle_NativeHandle_UIntPtr_bool_CGRect(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean,CoreGraphics.CGRect)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_CGPoint_nfloat_nfloat_nfloat_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_CGRect_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_CGRect_bool_UIEdgeInsets(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Boolean,UIKit.UIEdgeInsets)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_CGRect_UIntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.UIntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_CGRect_UIntPtr_UIntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.UIntPtr,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_CGSize_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGSize,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_CGSize_int_bool_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGSize,System.Int32,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_Double_bool(System.IntPtr,System.IntPtr,System.Double,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_Double_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Double,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_Double_Double_bool_int(System.IntPtr,System.IntPtr,System.Double,System.Double,System.Boolean,System.Int32)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_Double_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,System.Double,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_float_bool_bool(System.IntPtr,System.IntPtr,System.Single,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_float_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_float_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_float_float_bool_float_float_int_float(System.IntPtr,System.IntPtr,System.Single,System.Single,System.Boolean,System.Single,System.Single,System.Int32,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_float_float_bool_float_float_UIntPtr_float(System.IntPtr,System.IntPtr,System.Single,System.Single,System.Boolean,System.Single,System.Single,System.UIntPtr,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_float_float_bool_int_float_float_float_float_int_float(System.IntPtr,System.IntPtr,System.Single,System.Single,System.Boolean,System.Int32,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_int_bool(System.IntPtr,System.IntPtr,System.Int32,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_int_CGSize_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Int32,CoreGraphics.CGSize,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_int_int_NativeHandle_int_int_int_int_bool_bool_bool_bool(System.IntPtr,System.IntPtr,System.Int32,System.Int32,ObjCRuntime.NativeHandle,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_Int64_short_bool(System.IntPtr,System.IntPtr,System.Int64,System.Int16,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_IntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_IntPtr_IntPtr_IntPtr_IntPtr_IntPtr_bool_bool_NativeHandle_IntPtr_IntPtr(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_IntPtr_IntPtr_IntPtr_IntPtr_IntPtr_bool_bool_NativeHandle_UIntPtr_IntPtr_IntPtr(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,System.UIntPtr,System.IntPtr,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_IntPtr_NativeHandle_bool(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_IntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_IntPtr_UIntPtr_float_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr,System.Single,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_bool_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_bool_bool_bool_UIntPtr_UIntPtr_Double(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.UIntPtr,System.UIntPtr,System.Double)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_bool_Double(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.Double)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_bool_NativeHandle_int(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,System.Int32)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_bool_NativeHandle_int_int_int_int_int_bool_bool_bool_bool_UInt16_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.UInt16,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_bool_NativeHandle_NativeHandle_UInt32_bool_bool_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_bool_NativeHandle_NativeHandle_UInt32_bool_bool_bool_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_bool_nfloat(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.Runtime.InteropServices.NFloat)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_bool_UIntPtr_UIntPtr_UIntPtr_Double_Double(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Double,System.Double)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_IntPtr_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_NativeHandle_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_UIntPtr_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,System.UIntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_UIntPtr_UIntPtr_Double_Double(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,System.UIntPtr,System.Double,System.Double)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_UIntPtr_UIntPtr_int(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,System.UIntPtr,System.Int32)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_bool_UIntPtr_UIntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,System.UIntPtr,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_CGRect_int_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,System.Int32,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_CGSize_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGSize,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_Double_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_Double_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_Double_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_Double_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_float_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Single,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_float_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Single,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_float_float_float_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Single,System.Single,System.Single,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_float_float_float_bool_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Single,System.Single,System.Single,System.Boolean,System.UIntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_int_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Int32,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_IntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_IntPtr_IntPtr_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_bool_bool_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_bool_int(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.Int32)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_bool_UIntPtr_ref_NSRange(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr,Foundation.NSRange&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_int_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Int32,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_IntPtr_bool_IntPtr_IntPtr_IntPtr_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_int_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Int32,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_UIntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_ref_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_ref_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr_bool_bool_UIntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean,System.Boolean,System.UIntPtr,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_NSRange_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Foundation.NSRange,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_UInt32_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UInt32,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_UIntPtr_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_UIntPtr_NativeHandle_out_Boolean_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,System.Boolean&,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_UIntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_UIntPtr_UIntPtr_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_UIntPtr_UIntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_NativeHandle_UIntPtr_UIntPtr_UIntPtr_UIntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_nfloat_CGSize_bool(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,CoreGraphics.CGSize,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_nfloat_Double_bool(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Double,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_nfloat_nfloat_bool(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_nfloat_nfloat_nfloat_Double_bool(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UInt16_bool_bool(System.IntPtr,System.IntPtr,System.UInt16,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UInt32_CGSize_bool_NativeHandle(System.IntPtr,System.IntPtr,System.UInt32,CoreGraphics.CGSize,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UInt64_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,System.UInt64,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_bool_ref_NSRange(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean,Foundation.NSRange&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_CGPoint_UIntPtr_Double_IntPtr_NativeHandle_NativeHandle_NativeHandle_bool_UInt16(System.IntPtr,System.IntPtr,System.UIntPtr,CoreGraphics.CGPoint,System.UIntPtr,System.Double,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.UInt16)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_Double_bool_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,System.Double,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_Double_UInt32_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.Double,System.UInt32,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_out_NSRange_bool(System.IntPtr,System.IntPtr,System.UIntPtr,Foundation.NSRange&,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_UIntPtr_NativeHandle_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle&)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_UIntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_UIntPtr_UIntPtr_bool_bool_bool_bool_float(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_UIntPtr_UIntPtr_bool_bool_bool_bool_float_UInt64(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.UInt64)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_UIntPtr_UIntPtr_bool_bool_bool_float(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Boolean,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_UIntPtr_UIntPtr_bool_bool_float(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Single)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::NativeHandle_objc_msgSendSuper_UIntPtr_UIntPtr_UIntPtr_UIntPtr_float_bool_bool_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Single,System.Boolean,System.Boolean,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSend_float_NativeHandle_NVector2i_int_IntPtr_bool(System.IntPtr,System.IntPtr,System.Single,ObjCRuntime.NativeHandle,CoreGraphics.NVector2i,System.Int32,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSend_float_Vector2_UIntPtr_UIntPtr_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Numerics.Vector2,System.UIntPtr,System.UIntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSend_float_Vector2_UIntPtr_UIntPtr_UIntPtr_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Numerics.Vector2,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSend_NativeHandle_bool_NativeHandle_NVector2i_IntPtr_UIntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,CoreGraphics.NVector2i,System.IntPtr,System.UIntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSend_NativeHandle_NVector2d_NVector2d_NVector2i_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.NVector2d,CoreGraphics.NVector2d,CoreGraphics.NVector2i,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSend_NMatrix4_bool(System.IntPtr,System.IntPtr,CoreGraphics.NMatrix4,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSend_NVector2i_int_int_bool(System.IntPtr,System.IntPtr,CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSend_NVector2i_int_int_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSend_Vector3_NVector3i_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector3i,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSend_Vector3_UIntPtr_UIntPtr_IntPtr_bool_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,System.UIntPtr,System.UIntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSendSuper_float_NativeHandle_NVector2i_int_IntPtr_bool(System.IntPtr,System.IntPtr,System.Single,ObjCRuntime.NativeHandle,CoreGraphics.NVector2i,System.Int32,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSendSuper_float_Vector2_UIntPtr_UIntPtr_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Numerics.Vector2,System.UIntPtr,System.UIntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSendSuper_float_Vector2_UIntPtr_UIntPtr_UIntPtr_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Numerics.Vector2,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSendSuper_NativeHandle_bool_NativeHandle_NVector2i_IntPtr_UIntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,CoreGraphics.NVector2i,System.IntPtr,System.UIntPtr,System.IntPtr,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSendSuper_NativeHandle_NVector2d_NVector2d_NVector2i_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.NVector2d,CoreGraphics.NVector2d,CoreGraphics.NVector2i,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSendSuper_NMatrix4_bool(System.IntPtr,System.IntPtr,CoreGraphics.NMatrix4,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSendSuper_NVector2i_int_int_bool(System.IntPtr,System.IntPtr,CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSendSuper_NVector2i_int_int_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSendSuper_Vector3_NVector3i_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector3i,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "ObjCRuntime.NativeHandle ObjCRuntime.Messaging::xamarin_simd__NativeHandle_objc_msgSendSuper_Vector3_UIntPtr_UIntPtr_IntPtr_bool_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,System.UIntPtr,System.UIntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle)", "Security.SecStatusCode Security.SecTrust::SecTrustGetNetworkFetchAllowed(System.IntPtr,System.Boolean&)", "Security.SecStatusCode Security.SecTrust::SecTrustSetAnchorCertificatesOnly(System.IntPtr,System.Boolean)", "Security.SecStatusCode Security.SecTrust::SecTrustSetNetworkFetchAllowed(System.IntPtr,System.Boolean)", @@ -593,376 +299,6 @@ public partial class BlittablePInvokes { "System.Boolean ObjCRuntime.Class::class_addMethod(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)", "System.Boolean ObjCRuntime.Class::class_addProperty(System.IntPtr,System.IntPtr,System.IntPtr*,System.Int32)", "System.Boolean ObjCRuntime.Class::class_addProtocol(System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend(System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_bool_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_bool_UIntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,System.UIntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_byte(System.IntPtr,System.IntPtr,System.Byte)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGPoint(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGPoint_CGPoint_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGPoint_CGRect(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,CoreGraphics.CGRect)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGPoint_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGRect(System.IntPtr,System.IntPtr,CoreGraphics.CGRect)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGRect_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGRect_CGRect(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,CoreGraphics.CGRect)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGRect_CGRect_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGRect_CGRect_UIntPtr_nfloat_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,CoreGraphics.CGRect,System.UIntPtr,System.Runtime.InteropServices.NFloat,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGRect_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGRect_NativeHandle_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CGRect_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_char(System.IntPtr,System.IntPtr,System.Char)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CLLocationCoordinate2D(System.IntPtr,System.IntPtr,CoreLocation.CLLocationCoordinate2D)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CMTime(System.IntPtr,System.IntPtr,CoreMedia.CMTime)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CMTime_ref_CGAffineTransform_ref_CGAffineTransform_ref_CMTimeRange(System.IntPtr,System.IntPtr,CoreMedia.CMTime,CoreGraphics.CGAffineTransform&,CoreGraphics.CGAffineTransform&,CoreMedia.CMTimeRange&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CMTime_ref_CGRect_ref_CGRect_ref_CMTimeRange(System.IntPtr,System.IntPtr,CoreMedia.CMTime,CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreMedia.CMTimeRange&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CMTime_ref_Single_ref_Single_ref_CMTimeRange(System.IntPtr,System.IntPtr,CoreMedia.CMTime,System.Single&,System.Single&,CoreMedia.CMTimeRange&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CMTimeRange_CMTimeRange(System.IntPtr,System.IntPtr,CoreMedia.CMTimeRange,CoreMedia.CMTimeRange)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CMTimeRange_NativeHandle_CMTime_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,CoreMedia.CMTimeRange,ObjCRuntime.NativeHandle,CoreMedia.CMTime,System.Boolean,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CMTimeRange_NativeHandle_CMTime_ref_NativeHandle(System.IntPtr,System.IntPtr,CoreMedia.CMTimeRange,ObjCRuntime.NativeHandle,CoreMedia.CMTime,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_CMTimeRange_ref_NativeHandle(System.IntPtr,System.IntPtr,CoreMedia.CMTimeRange,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_Double(System.IntPtr,System.IntPtr,System.Double)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_Double_Double(System.IntPtr,System.IntPtr,System.Double,System.Double)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_Double_NativeHandle(System.IntPtr,System.IntPtr,System.Double,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_Double_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Double,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_float_float(System.IntPtr,System.IntPtr,System.Single,System.Single)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_float_float_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Single,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_float_float_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Single,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_float_NativeHandle_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.Single,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_float_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Single,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_int(System.IntPtr,System.IntPtr,System.Int32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_int_int(System.IntPtr,System.IntPtr,System.Int32,System.Int32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_IntPtr(System.IntPtr,System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_IntPtr_float_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,System.Single,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_IntPtr_IntPtr(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_IntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_IntPtr_NativeHandle_UInt32_ref_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UInt32,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_IntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_IntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_MKMapRect(System.IntPtr,System.IntPtr,MapKit.MKMapRect)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_MKMapRect_nfloat(System.IntPtr,System.IntPtr,MapKit.MKMapRect,System.Runtime.InteropServices.NFloat)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_bool_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_bool_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_bool_NSRange_out_NSRange(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,Foundation.NSRange,Foundation.NSRange&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_byte_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Byte,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_byte_byte_byte_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Byte,System.Byte,System.Byte,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_byte_byte_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Byte,System.Byte,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_byte_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Byte,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_byte_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Byte,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CGPoint(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CGPoint_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CGRect(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CGRect_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CGRect_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CGRect_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CGRect_NativeHandle_CGPoint_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CGRect_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CGRect_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CMTime(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreMedia.CMTime)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CMTimeRange(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreMedia.CMTimeRange)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_CMTimeRange_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreMedia.CMTimeRange,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_Double(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_Double_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_int(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Int32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_int_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Int32,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_IntPtr_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_IntPtr_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_IntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_IntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_CGPoint_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_CMTime_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,CoreMedia.CMTime,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_Double_ref_CVTimeStamp(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Double,CoreVideo.CVTimeStamp&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_int_int(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Int32,System.Int32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_int_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Int32,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_int_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Int32,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_IntPtr_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_IntPtr_IntPtr_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_IntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_IntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_IntPtr_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_IntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_out_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_UIntPtr_UInt64_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_UIntPtr_ref_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_UIntPtr_UInt64_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NSRange(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,Foundation.NSRange)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_NSRange_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,Foundation.NSRange,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_ref_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_ref_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_UInt32_UInt32_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UInt32,System.UInt32,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_UInt64_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_UIntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_nfloat_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Runtime.InteropServices.NFloat,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_NSRange_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Foundation.NSRange,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_out_Boolean_out_Boolean_out_Boolean_ref_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean&,System.Boolean&,System.Boolean&,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_out_CMTime_out_CMTime_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreMedia.CMTime&,CoreMedia.CMTime&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_ref_Boolean(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_ref_CGRect_ref_CGRect_ref_NFloat_NativeHandle_NSRange(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect&,CoreGraphics.CGRect&,System.Runtime.InteropServices.NFloat&,ObjCRuntime.NativeHandle,Foundation.NSRange)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_ref_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_ref_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_ref_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_UInt32_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UInt32,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_UIntPtr_IntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_UIntPtr_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_UIntPtr_NativeHandle_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_UIntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_UIntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_UIntPtr_UInt64_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_UIntPtr_UIntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NativeHandle_UIntPtr_UIntPtr_UInt32_UInt32_UIntPtr_UIntPtr_UInt32(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,System.UInt32,System.UInt32,System.UIntPtr,System.UIntPtr,System.UInt32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NSOperatingSystemVersion(System.IntPtr,System.IntPtr,Foundation.NSOperatingSystemVersion)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NSRange(System.IntPtr,System.IntPtr,Foundation.NSRange)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_NSRange_NativeHandle(System.IntPtr,System.IntPtr,Foundation.NSRange,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_out_Double_NativeHandle_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Double&,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_out_Double_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Double&,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_out_IntPtr_out_IntPtr_CGPoint(System.IntPtr,System.IntPtr,System.IntPtr&,System.IntPtr&,CoreGraphics.CGPoint)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_out_IntPtr_out_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr&,System.IntPtr&,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_out_NFloat_out_NFloat(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat&,System.Runtime.InteropServices.NFloat&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_out_NSUrlRelationship_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,Foundation.NSUrlRelationship&,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_out_NSUrlRelationship_UIntPtr_UIntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,Foundation.NSUrlRelationship&,System.UIntPtr,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_out_UInt64_ref_NativeHandle(System.IntPtr,System.IntPtr,System.UInt64&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_ref_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_ref_NativeHandle_out_Double_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&,System.Double&,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_ref_NativeHandle_out_Double_UIntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&,System.Double&,System.UIntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_ref_NativeHandle_out_NSRange_NativeHandle_NSRange_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&,Foundation.NSRange&,ObjCRuntime.NativeHandle,Foundation.NSRange,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_ref_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_ref_NSRange(System.IntPtr,System.IntPtr,Foundation.NSRange&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_ref_SCNVector3_ref_NFloat(System.IntPtr,System.IntPtr,SceneKit.SCNVector3&,System.Runtime.InteropServices.NFloat&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_ref_SCNVector3_ref_SCNVector3(System.IntPtr,System.IntPtr,SceneKit.SCNVector3&,SceneKit.SCNVector3&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UInt32(System.IntPtr,System.IntPtr,System.UInt32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UInt32_ref_NativeHandle(System.IntPtr,System.IntPtr,System.UInt32,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UInt64_NativeHandle(System.IntPtr,System.IntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UInt64_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.UInt64,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UInt64_ref_NativeHandle(System.IntPtr,System.IntPtr,System.UInt64,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UIntPtr(System.IntPtr,System.IntPtr,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UIntPtr_Double(System.IntPtr,System.IntPtr,System.UIntPtr,System.Double)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UIntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UIntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UIntPtr_ref_NativeHandle_out_Double_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,ObjCRuntime.NativeHandle&,System.Double&,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UIntPtr_UInt64_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UIntPtr_UInt64_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSend_UIntPtr_UIntPtr(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper(System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_bool_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_bool_UIntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,System.UIntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_byte(System.IntPtr,System.IntPtr,System.Byte)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGPoint(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGPoint_CGPoint_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGPoint_CGRect(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,CoreGraphics.CGRect)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGPoint_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGRect(System.IntPtr,System.IntPtr,CoreGraphics.CGRect)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGRect_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGRect_CGRect(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,CoreGraphics.CGRect)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGRect_CGRect_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGRect_CGRect_UIntPtr_nfloat_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,CoreGraphics.CGRect,System.UIntPtr,System.Runtime.InteropServices.NFloat,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGRect_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGRect_NativeHandle_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CGRect_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_char(System.IntPtr,System.IntPtr,System.Char)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CLLocationCoordinate2D(System.IntPtr,System.IntPtr,CoreLocation.CLLocationCoordinate2D)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CMTime(System.IntPtr,System.IntPtr,CoreMedia.CMTime)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CMTime_ref_CGAffineTransform_ref_CGAffineTransform_ref_CMTimeRange(System.IntPtr,System.IntPtr,CoreMedia.CMTime,CoreGraphics.CGAffineTransform&,CoreGraphics.CGAffineTransform&,CoreMedia.CMTimeRange&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CMTime_ref_CGRect_ref_CGRect_ref_CMTimeRange(System.IntPtr,System.IntPtr,CoreMedia.CMTime,CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreMedia.CMTimeRange&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CMTime_ref_Single_ref_Single_ref_CMTimeRange(System.IntPtr,System.IntPtr,CoreMedia.CMTime,System.Single&,System.Single&,CoreMedia.CMTimeRange&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CMTimeRange_CMTimeRange(System.IntPtr,System.IntPtr,CoreMedia.CMTimeRange,CoreMedia.CMTimeRange)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CMTimeRange_NativeHandle_CMTime_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,CoreMedia.CMTimeRange,ObjCRuntime.NativeHandle,CoreMedia.CMTime,System.Boolean,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CMTimeRange_NativeHandle_CMTime_ref_NativeHandle(System.IntPtr,System.IntPtr,CoreMedia.CMTimeRange,ObjCRuntime.NativeHandle,CoreMedia.CMTime,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_CMTimeRange_ref_NativeHandle(System.IntPtr,System.IntPtr,CoreMedia.CMTimeRange,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_Double(System.IntPtr,System.IntPtr,System.Double)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_Double_Double(System.IntPtr,System.IntPtr,System.Double,System.Double)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_Double_NativeHandle(System.IntPtr,System.IntPtr,System.Double,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_Double_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Double,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_float_float(System.IntPtr,System.IntPtr,System.Single,System.Single)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_float_float_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Single,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_float_float_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.Single,System.Single,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_float_NativeHandle_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.Single,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_float_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Single,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_int(System.IntPtr,System.IntPtr,System.Int32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_int_int(System.IntPtr,System.IntPtr,System.Int32,System.Int32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_IntPtr(System.IntPtr,System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_IntPtr_float_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,System.Single,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_IntPtr_IntPtr(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_IntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_IntPtr_NativeHandle_UInt32_ref_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UInt32,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_IntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_IntPtr_UIntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_MKMapRect(System.IntPtr,System.IntPtr,MapKit.MKMapRect)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_MKMapRect_nfloat(System.IntPtr,System.IntPtr,MapKit.MKMapRect,System.Runtime.InteropServices.NFloat)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_bool_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_bool_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_bool_NSRange_out_NSRange(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,Foundation.NSRange,Foundation.NSRange&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_byte_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Byte,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_byte_byte_byte_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Byte,System.Byte,System.Byte,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_byte_byte_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Byte,System.Byte,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_byte_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Byte,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_byte_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Byte,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CGPoint(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CGPoint_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CGRect(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CGRect_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CGRect_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CGRect_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CGRect_NativeHandle_CGPoint_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CGRect_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CGRect_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CMTime(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreMedia.CMTime)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CMTimeRange(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreMedia.CMTimeRange)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_CMTimeRange_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreMedia.CMTimeRange,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_Double(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_Double_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Double,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_int(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Int32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_int_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Int32,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_IntPtr_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_IntPtr_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_IntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_IntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_CGPoint_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_CMTime_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,CoreMedia.CMTime,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_Double_ref_CVTimeStamp(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Double,CoreVideo.CVTimeStamp&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_int_int(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Int32,System.Int32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_int_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Int32,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_int_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Int32,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_IntPtr_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_IntPtr_IntPtr_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,System.IntPtr,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_IntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_IntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_IntPtr_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_IntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_out_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_UIntPtr_UInt64_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_UIntPtr_ref_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_UIntPtr_UInt64_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NSRange(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,Foundation.NSRange)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_NSRange_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,Foundation.NSRange,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_ref_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_ref_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_UInt32_UInt32_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UInt32,System.UInt32,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr_UInt64_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr_UIntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_nfloat_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Runtime.InteropServices.NFloat,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_NSRange_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Foundation.NSRange,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_out_Boolean_out_Boolean_out_Boolean_ref_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean&,System.Boolean&,System.Boolean&,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_out_CMTime_out_CMTime_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreMedia.CMTime&,CoreMedia.CMTime&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_ref_Boolean(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_ref_CGRect_ref_CGRect_ref_NFloat_NativeHandle_NSRange(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGRect&,CoreGraphics.CGRect&,System.Runtime.InteropServices.NFloat&,ObjCRuntime.NativeHandle,Foundation.NSRange)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_ref_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_ref_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_ref_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_UInt32_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UInt32,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_UIntPtr_IntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_UIntPtr_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,System.IntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_UIntPtr_NativeHandle_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_UIntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_UIntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_UIntPtr_UInt64_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_UIntPtr_UIntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NativeHandle_UIntPtr_UIntPtr_UInt32_UInt32_UIntPtr_UIntPtr_UInt32(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.UIntPtr,System.UInt32,System.UInt32,System.UIntPtr,System.UIntPtr,System.UInt32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NSOperatingSystemVersion(System.IntPtr,System.IntPtr,Foundation.NSOperatingSystemVersion)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NSRange(System.IntPtr,System.IntPtr,Foundation.NSRange)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_NSRange_NativeHandle(System.IntPtr,System.IntPtr,Foundation.NSRange,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_out_Double_NativeHandle_bool_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Double&,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_out_Double_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,System.Double&,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_out_IntPtr_out_IntPtr_CGPoint(System.IntPtr,System.IntPtr,System.IntPtr&,System.IntPtr&,CoreGraphics.CGPoint)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_out_IntPtr_out_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr&,System.IntPtr&,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_out_NFloat_out_NFloat(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat&,System.Runtime.InteropServices.NFloat&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_out_NSUrlRelationship_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,Foundation.NSUrlRelationship&,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_out_NSUrlRelationship_UIntPtr_UIntPtr_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,Foundation.NSUrlRelationship&,System.UIntPtr,System.UIntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_out_UInt64_ref_NativeHandle(System.IntPtr,System.IntPtr,System.UInt64&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_ref_NativeHandle_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_ref_NativeHandle_out_Double_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&,System.Double&,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_ref_NativeHandle_out_Double_UIntPtr_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&,System.Double&,System.UIntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_ref_NativeHandle_out_NSRange_NativeHandle_NSRange_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&,Foundation.NSRange&,ObjCRuntime.NativeHandle,Foundation.NSRange,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_ref_NativeHandle_ref_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle&,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_ref_NSRange(System.IntPtr,System.IntPtr,Foundation.NSRange&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_ref_SCNVector3_ref_NFloat(System.IntPtr,System.IntPtr,SceneKit.SCNVector3&,System.Runtime.InteropServices.NFloat&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_ref_SCNVector3_ref_SCNVector3(System.IntPtr,System.IntPtr,SceneKit.SCNVector3&,SceneKit.SCNVector3&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UInt32(System.IntPtr,System.IntPtr,System.UInt32)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UInt32_ref_NativeHandle(System.IntPtr,System.IntPtr,System.UInt32,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UInt64_NativeHandle(System.IntPtr,System.IntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UInt64_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.UInt64,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UInt64_ref_NativeHandle(System.IntPtr,System.IntPtr,System.UInt64,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UIntPtr(System.IntPtr,System.IntPtr,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UIntPtr_Double(System.IntPtr,System.IntPtr,System.UIntPtr,System.Double)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UIntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UIntPtr_ref_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,ObjCRuntime.NativeHandle&)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UIntPtr_ref_NativeHandle_out_Double_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,ObjCRuntime.NativeHandle&,System.Double&,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UIntPtr_UInt64_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UIntPtr_UInt64_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.UIntPtr,System.UInt64,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::bool_objc_msgSendSuper_UIntPtr_UIntPtr(System.IntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr)", - "System.Boolean ObjCRuntime.Messaging::xamarin_simd__bool_objc_msgSend_NVector2i_IntPtr_float_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.NVector2i,System.IntPtr,System.Single,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::xamarin_simd__bool_objc_msgSend_NVector2i_NativeHandle_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.NVector2i,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::xamarin_simd__bool_objc_msgSend_NVector4i_bool_bool_bool_bool(System.IntPtr,System.IntPtr,CoreGraphics.NVector4i,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", - "System.Boolean ObjCRuntime.Messaging::xamarin_simd__bool_objc_msgSendSuper_NVector2i_IntPtr_float_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.NVector2i,System.IntPtr,System.Single,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::xamarin_simd__bool_objc_msgSendSuper_NVector2i_NativeHandle_NativeHandle_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.NVector2i,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Boolean ObjCRuntime.Messaging::xamarin_simd__bool_objc_msgSendSuper_NVector4i_bool_bool_bool_bool(System.IntPtr,System.IntPtr,CoreGraphics.NVector4i,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", "System.Boolean ObjCRuntime.Selector::sel_isMapped(System.IntPtr)", "System.Boolean SearchKit.SKIndex::SKIndexAddDocument(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", "System.Boolean SearchKit.SKIndex::SKIndexAddDocumentWithText(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", @@ -1018,8 +354,6 @@ public partial class BlittablePInvokes { "System.Boolean Vision.VNUtils::IsIdentityRect(CoreGraphics.CGRect)", "System.Byte Security.SecProtocolMetadata::sec_protocol_metadata_access_supported_signature_algorithms(System.IntPtr,ObjCRuntime.BlockLiteral*)", "System.Char CoreFoundation.CFString::CFStringGetCharacterAtIndex(System.IntPtr,System.IntPtr)", - "System.Char ObjCRuntime.Messaging::char_objc_msgSend_IntPtr(System.IntPtr,System.IntPtr,System.IntPtr)", - "System.Char ObjCRuntime.Messaging::char_objc_msgSendSuper_IntPtr(System.IntPtr,System.IntPtr,System.IntPtr)", "System.Int32 AudioToolbox.AudioFile::AudioFileReadBytes(System.IntPtr,System.Boolean,System.Int64,System.Int32&,System.IntPtr)", "System.Int32 AudioToolbox.AudioFile::AudioFileReadPacketData(System.IntPtr,System.Boolean,System.Int32&,AudioToolbox.AudioStreamPacketDescription*,System.Int64,System.Int32&,System.IntPtr)", "System.Int32 AudioToolbox.AudioFile::AudioFileWriteBytes(System.IntPtr,System.Boolean,System.Int64,System.Int32&,System.IntPtr)", @@ -1056,30 +390,6 @@ public partial class BlittablePInvokes { "System.IntPtr Foundation.NSSearchPath::NSSearchPathForDirectoriesInDomains(System.UIntPtr,System.UIntPtr,System.Boolean)", "System.IntPtr Foundation.NSThread::xamarin_init_nsthread(System.IntPtr,System.Boolean,System.IntPtr,System.IntPtr,System.IntPtr)", "System.IntPtr GameController.GCExtendedGamepadSnapshotData::NSDataFromGCExtendedGamepadSnapshotData(GameController.GCExtendedGamepadSnapshotData&)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSend_CGRect_NativeHandle_IntPtr_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSend_IntPtr_UIntPtr_float_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr,System.Single,System.Boolean)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSend_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSend_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSendSuper_CGRect_NativeHandle_IntPtr_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSendSuper_IntPtr_UIntPtr_float_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr,System.Single,System.Boolean)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSendSuper_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSendSuper_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.IntPtr ObjCRuntime.Messaging::IntPtr_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSend_Vector3_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSend_Vector3_NVector2i_bool_bool_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector2i,System.Boolean,System.Boolean,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSend_Vector3_NVector2i_bool_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector2i,System.Boolean,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSend_Vector3_NVector2i_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector2i,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSend_Vector3_NVector2i_int_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector2i,System.Int32,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSend_Vector3_NVector3i_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector3i,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_NVector2i_bool_bool_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector2i,System.Boolean,System.Boolean,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_NVector2i_bool_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector2i,System.Boolean,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_NVector2i_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector2i,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_NVector2i_int_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector2i,System.Int32,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", - "System.IntPtr ObjCRuntime.Messaging::xamarin_simd__IntPtr_objc_msgSendSuper_Vector3_NVector3i_bool_IntPtr_NativeHandle(System.IntPtr,System.IntPtr,System.Numerics.Vector3,CoreGraphics.NVector3i,System.Boolean,System.IntPtr,ObjCRuntime.NativeHandle)", "System.IntPtr ObjCRuntime.Selector::GetHandle(System.String)", "System.IntPtr SearchKit.SKIndex::SKIndexOpenWithURL(System.IntPtr,System.IntPtr,System.Boolean)", "System.IntPtr Security.SecPolicy::SecPolicyCreateSSL(System.Boolean,System.IntPtr)", @@ -1087,24 +397,6 @@ public partial class BlittablePInvokes { "System.IntPtr SystemConfiguration.NetworkReachability::SCNetworkReachabilityCreateWithAddressPair(System.IntPtr,System.IntPtr,SystemConfiguration.NetworkReachability/sockaddr_in&)", "System.IntPtr SystemConfiguration.NetworkReachability::SCNetworkReachabilityCreateWithAddressPair(System.IntPtr,SystemConfiguration.NetworkReachability/sockaddr_in&,System.IntPtr)", "System.IntPtr SystemConfiguration.NetworkReachability::SCNetworkReachabilityCreateWithAddressPair(System.IntPtr,SystemConfiguration.NetworkReachability/sockaddr_in&,SystemConfiguration.NetworkReachability/sockaddr_in&)", - "System.Runtime.InteropServices.NFloat ObjCRuntime.Messaging::nfloat_objc_msgSend_NativeHandle_IntPtr_bool_nfloat(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean,System.Runtime.InteropServices.NFloat)", - "System.Runtime.InteropServices.NFloat ObjCRuntime.Messaging::nfloat_objc_msgSendSuper_NativeHandle_IntPtr_bool_nfloat(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean,System.Runtime.InteropServices.NFloat)", - "System.UInt16 ObjCRuntime.Messaging::UInt16_objc_msgSend_UIntPtr_out_Boolean(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean&)", - "System.UInt16 ObjCRuntime.Messaging::UInt16_objc_msgSend_UIntPtr_ref_Boolean(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean&)", - "System.UInt16 ObjCRuntime.Messaging::UInt16_objc_msgSendSuper_UIntPtr_out_Boolean(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean&)", - "System.UInt16 ObjCRuntime.Messaging::UInt16_objc_msgSendSuper_UIntPtr_ref_Boolean(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean&)", - "System.UInt32 ObjCRuntime.Messaging::UInt32_objc_msgSend_UIntPtr_ref_Boolean(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean&)", - "System.UInt32 ObjCRuntime.Messaging::UInt32_objc_msgSendSuper_UIntPtr_ref_Boolean(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean&)", - "System.UIntPtr ObjCRuntime.Messaging::UIntPtr_objc_msgSend_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "System.UIntPtr ObjCRuntime.Messaging::UIntPtr_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.UIntPtr ObjCRuntime.Messaging::UIntPtr_objc_msgSend_NativeHandle_NativeHandle_ref_NativeHandle_out_Boolean(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,System.Boolean&)", - "System.UIntPtr ObjCRuntime.Messaging::UIntPtr_objc_msgSend_UIntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean)", - "System.UIntPtr ObjCRuntime.Messaging::UIntPtr_objc_msgSend_UIntPtr_bool_bool_IntPtr_IntPtr(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.IntPtr,System.IntPtr)", - "System.UIntPtr ObjCRuntime.Messaging::UIntPtr_objc_msgSendSuper_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "System.UIntPtr ObjCRuntime.Messaging::UIntPtr_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.UIntPtr ObjCRuntime.Messaging::UIntPtr_objc_msgSendSuper_NativeHandle_NativeHandle_ref_NativeHandle_out_Boolean(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle&,System.Boolean&)", - "System.UIntPtr ObjCRuntime.Messaging::UIntPtr_objc_msgSendSuper_UIntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean)", - "System.UIntPtr ObjCRuntime.Messaging::UIntPtr_objc_msgSendSuper_UIntPtr_bool_bool_IntPtr_IntPtr(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.IntPtr,System.IntPtr)", "System.Void AppKit.NSCell::NSDrawNinePartImage(CoreGraphics.CGRect,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Boolean)", "System.Void AppKit.NSCell::NSDrawThreePartImage(CoreGraphics.CGRect,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Boolean)", "System.Void CoreGraphics.CGContext::CGContextSetAllowsAntialiasing(System.IntPtr,System.Boolean)", @@ -1157,172 +449,14 @@ public partial class BlittablePInvokes { "System.Void Network.NWProtocolQuicOptions::nw_quic_set_stream_is_unidirectional(System.IntPtr,System.Boolean)", "System.Void Network.NWWebSocketOptions::nw_ws_options_set_auto_reply_ping(System.IntPtr,System.Boolean)", "System.Void Network.NWWebSocketOptions::nw_ws_options_set_skip_handshake(System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::AudioComponentDescription_objc_msgSend_stret(AudioUnit.AudioComponentDescription&,System.IntPtr,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::AudioComponentDescription_objc_msgSendSuper_stret(AudioUnit.AudioComponentDescription&,System.IntPtr,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::AVSampleCursorChunkInfo_objc_msgSend_stret(AVFoundation.AVSampleCursorChunkInfo&,System.IntPtr,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::AVSampleCursorChunkInfo_objc_msgSendSuper_stret(AVFoundation.AVSampleCursorChunkInfo&,System.IntPtr,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::AVSampleCursorSyncInfo_objc_msgSend_stret(AVFoundation.AVSampleCursorSyncInfo&,System.IntPtr,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::AVSampleCursorSyncInfo_objc_msgSendSuper_stret(AVFoundation.AVSampleCursorSyncInfo&,System.IntPtr,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::CGRect_objc_msgSend_stret_bool(CoreGraphics.CGRect&,System.IntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::CGRect_objc_msgSend_stret_UIntPtr_IntPtr_bool(CoreGraphics.CGRect&,System.IntPtr,System.IntPtr,System.UIntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::CGRect_objc_msgSend_stret_UIntPtr_out_NSRange_bool(CoreGraphics.CGRect&,System.IntPtr,System.IntPtr,System.UIntPtr,Foundation.NSRange&,System.Boolean)", - "System.Void ObjCRuntime.Messaging::CGRect_objc_msgSendSuper_stret_bool(CoreGraphics.CGRect&,System.IntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::CGRect_objc_msgSendSuper_stret_UIntPtr_IntPtr_bool(CoreGraphics.CGRect&,System.IntPtr,System.IntPtr,System.UIntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::CGRect_objc_msgSendSuper_stret_UIntPtr_out_NSRange_bool(CoreGraphics.CGRect&,System.IntPtr,System.IntPtr,System.UIntPtr,Foundation.NSRange&,System.Boolean)", - "System.Void ObjCRuntime.Messaging::CMTime_objc_msgSend_stret_CMTime_out_Boolean(CoreMedia.CMTime&,System.IntPtr,System.IntPtr,CoreMedia.CMTime,System.Boolean&)", - "System.Void ObjCRuntime.Messaging::CMTime_objc_msgSendSuper_stret_CMTime_out_Boolean(CoreMedia.CMTime&,System.IntPtr,System.IntPtr,CoreMedia.CMTime,System.Boolean&)", - "System.Void ObjCRuntime.Messaging::NSRange_objc_msgSend_stret_NativeHandle_NSRange_IntPtr_bool_NativeHandle(Foundation.NSRange&,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Foundation.NSRange,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::NSRange_objc_msgSendSuper_stret_NativeHandle_NSRange_IntPtr_bool_NativeHandle(Foundation.NSRange&,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Foundation.NSRange,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", "System.Void ObjCRuntime.Messaging::void_objc_msgSend_AudioComponentDescription_UInt32_NativeHandle(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription,System.UInt32,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool_bool(System.IntPtr,System.IntPtr,System.Boolean,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool_CGRect(System.IntPtr,System.IntPtr,System.Boolean,CoreGraphics.CGRect)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool_CGRect_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,CoreGraphics.CGRect,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool_IntPtr(System.IntPtr,System.IntPtr,System.Boolean,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool_IntPtr_IntPtr(System.IntPtr,System.IntPtr,System.Boolean,System.IntPtr,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool_NSRange(System.IntPtr,System.IntPtr,System.Boolean,Foundation.NSRange)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_bool_UIntPtr(System.IntPtr,System.IntPtr,System.Boolean,System.UIntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CGPoint_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CGPoint_CGPoint_NativeHandle_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CGPoint_nfloat_nfloat_nfloat_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CGRect_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CGRect_bool_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Boolean,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CGRect_CGRect_UIntPtr_nfloat_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,CoreGraphics.CGRect,System.UIntPtr,System.Runtime.InteropServices.NFloat,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CGRect_NativeHandle_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CGRect_NativeHandle_bool_IntPtr(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CGRect_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CGSize_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGSize,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_CLLocationCoordinate2D_bool(System.IntPtr,System.IntPtr,CoreLocation.CLLocationCoordinate2D,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_Double_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Double,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_float_bool(System.IntPtr,System.IntPtr,System.Single,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_float_float_bool_float(System.IntPtr,System.IntPtr,System.Single,System.Single,System.Boolean,System.Single)", "System.Void ObjCRuntime.Messaging::void_objc_msgSend_GCDualSenseAdaptiveTriggerPositionalAmplitudes_float(System.IntPtr,System.IntPtr,GameController.GCDualSenseAdaptiveTriggerPositionalAmplitudes,System.Single)", "System.Void ObjCRuntime.Messaging::void_objc_msgSend_GCDualSenseAdaptiveTriggerPositionalResistiveStrengths(System.IntPtr,System.IntPtr,GameController.GCDualSenseAdaptiveTriggerPositionalResistiveStrengths)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_IntPtr_bool_bool_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_IntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_IntPtr_IntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_IntPtr_IntPtr_NativeHandle_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_IntPtr_NativeHandle_bool(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_IntPtr_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_IntPtr_UIntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_MKCoordinateRegion_bool(System.IntPtr,System.IntPtr,MapKit.MKCoordinateRegion,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_MKMapRect_bool(System.IntPtr,System.IntPtr,MapKit.MKMapRect,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_MKMapRect_NSEdgeInsets_bool(System.IntPtr,System.IntPtr,MapKit.MKMapRect,AppKit.NSEdgeInsets,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_MKMapRect_UIEdgeInsets_bool(System.IntPtr,System.IntPtr,MapKit.MKMapRect,UIKit.UIEdgeInsets,System.Boolean)", "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_AudioComponentDescription_NativeHandle_UInt32(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,AudioUnit.AudioComponentDescription,ObjCRuntime.NativeHandle,System.UInt32)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_bool_bool_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_bool_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_bool_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_bool_NativeHandle_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_bool_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_CGPoint_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_CGPoint_CGSize_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint,CoreGraphics.CGSize,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_MTLRegion_UIntPtr_UIntPtr_bool_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Metal.MTLRegion,System.UIntPtr,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_ref_Boolean(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean&)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_NativeHandle_bool_MTLOrigin(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,System.Boolean,Metal.MTLOrigin)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_nfloat_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Runtime.InteropServices.NFloat,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_NSRange_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Foundation.NSRange,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_nfloat_bool(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_nfloat_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_NSRange_UIntPtr_bool(System.IntPtr,System.IntPtr,Foundation.NSRange,System.UIntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_SCNVector3_bool(System.IntPtr,System.IntPtr,SceneKit.SCNVector3,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_SCNVector3_SCNVector3_bool(System.IntPtr,System.IntPtr,SceneKit.SCNVector3,SceneKit.SCNVector3,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_SCNVector4_bool(System.IntPtr,System.IntPtr,SceneKit.SCNVector4,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSend_UIntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean)", "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_AudioComponentDescription_UInt32_NativeHandle(System.IntPtr,System.IntPtr,AudioUnit.AudioComponentDescription,System.UInt32,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool(System.IntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool_bool(System.IntPtr,System.IntPtr,System.Boolean,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool_CGRect(System.IntPtr,System.IntPtr,System.Boolean,CoreGraphics.CGRect)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool_CGRect_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,CoreGraphics.CGRect,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool_IntPtr(System.IntPtr,System.IntPtr,System.Boolean,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool_IntPtr_IntPtr(System.IntPtr,System.IntPtr,System.Boolean,System.IntPtr,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool_NSRange(System.IntPtr,System.IntPtr,System.Boolean,Foundation.NSRange)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_bool_UIntPtr(System.IntPtr,System.IntPtr,System.Boolean,System.UIntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CGPoint_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CGPoint_CGPoint_NativeHandle_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,CoreGraphics.CGPoint,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CGPoint_nfloat_nfloat_nfloat_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CGRect_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CGRect_bool_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Boolean,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CGRect_CGRect_UIntPtr_nfloat_bool_NativeHandle(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,CoreGraphics.CGRect,System.UIntPtr,System.Runtime.InteropServices.NFloat,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CGRect_NativeHandle_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CGRect_NativeHandle_bool_IntPtr(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CGRect_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGRect,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CGSize_bool(System.IntPtr,System.IntPtr,CoreGraphics.CGSize,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_CLLocationCoordinate2D_bool(System.IntPtr,System.IntPtr,CoreLocation.CLLocationCoordinate2D,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_Double_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Double,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_float_bool(System.IntPtr,System.IntPtr,System.Single,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_float_float_bool_float(System.IntPtr,System.IntPtr,System.Single,System.Single,System.Boolean,System.Single)", "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_GCDualSenseAdaptiveTriggerPositionalAmplitudes_float(System.IntPtr,System.IntPtr,GameController.GCDualSenseAdaptiveTriggerPositionalAmplitudes,System.Single)", "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_GCDualSenseAdaptiveTriggerPositionalResistiveStrengths(System.IntPtr,System.IntPtr,GameController.GCDualSenseAdaptiveTriggerPositionalResistiveStrengths)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_IntPtr_bool_bool_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_IntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_IntPtr_IntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_IntPtr_IntPtr_NativeHandle_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_IntPtr_NativeHandle_bool(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_IntPtr_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_IntPtr_UIntPtr_IntPtr_bool(System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_MKCoordinateRegion_bool(System.IntPtr,System.IntPtr,MapKit.MKCoordinateRegion,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_MKMapRect_bool(System.IntPtr,System.IntPtr,MapKit.MKMapRect,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_MKMapRect_NSEdgeInsets_bool(System.IntPtr,System.IntPtr,MapKit.MKMapRect,AppKit.NSEdgeInsets,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_MKMapRect_UIEdgeInsets_bool(System.IntPtr,System.IntPtr,MapKit.MKMapRect,UIKit.UIEdgeInsets,System.Boolean)", "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_AudioComponentDescription_NativeHandle_UInt32(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,AudioUnit.AudioComponentDescription,ObjCRuntime.NativeHandle,System.UInt32)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_bool_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_bool_bool_NativeHandle_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_bool_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_bool_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_bool_NativeHandle_NativeHandle_IntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.IntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_bool_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Boolean,System.UIntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_CGPoint_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_CGPoint_CGSize_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,CoreGraphics.CGPoint,CoreGraphics.CGSize,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_IntPtr_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.IntPtr,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_MTLRegion_UIntPtr_UIntPtr_bool_NativeHandle_UIntPtr(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Metal.MTLRegion,System.UIntPtr,System.UIntPtr,System.Boolean,ObjCRuntime.NativeHandle,System.UIntPtr)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_NativeHandle_bool_NativeHandle(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle_ref_Boolean(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.Boolean&)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_NativeHandle_UIntPtr_NativeHandle_bool_MTLOrigin(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,ObjCRuntime.NativeHandle,System.UIntPtr,ObjCRuntime.NativeHandle,System.Boolean,Metal.MTLOrigin)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_nfloat_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.Runtime.InteropServices.NFloat,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_NSRange_IntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,Foundation.NSRange,System.IntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NativeHandle_UIntPtr_bool(System.IntPtr,System.IntPtr,ObjCRuntime.NativeHandle,System.UIntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_nfloat_bool(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_nfloat_bool_NativeHandle(System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat,System.Boolean,ObjCRuntime.NativeHandle)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_NSRange_UIntPtr_bool(System.IntPtr,System.IntPtr,Foundation.NSRange,System.UIntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_SCNVector3_bool(System.IntPtr,System.IntPtr,SceneKit.SCNVector3,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_SCNVector3_SCNVector3_bool(System.IntPtr,System.IntPtr,SceneKit.SCNVector3,SceneKit.SCNVector3,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_SCNVector4_bool(System.IntPtr,System.IntPtr,SceneKit.SCNVector4,System.Boolean)", - "System.Void ObjCRuntime.Messaging::void_objc_msgSendSuper_UIntPtr_bool(System.IntPtr,System.IntPtr,System.UIntPtr,System.Boolean)", - "System.Void ObjCRuntime.Messaging::xamarin_simd__GKTriangle_objc_msgSend_stret_UIntPtr(GameplayKit.GKTriangle&,System.IntPtr,System.IntPtr,System.UIntPtr)", - "System.Void ObjCRuntime.Messaging::xamarin_simd__GKTriangle_objc_msgSendSuper_stret_UIntPtr(GameplayKit.GKTriangle&,System.IntPtr,System.IntPtr,System.UIntPtr)", - "System.Void ObjCRuntime.Messaging::xamarin_simd__void_objc_msgSend_MDLAxisAlignedBoundingBox_bool(System.IntPtr,System.IntPtr,ModelIO.MDLAxisAlignedBoundingBox,System.Boolean)", - "System.Void ObjCRuntime.Messaging::xamarin_simd__void_objc_msgSendSuper_MDLAxisAlignedBoundingBox_bool(System.IntPtr,System.IntPtr,ModelIO.MDLAxisAlignedBoundingBox,System.Boolean)", "System.Void ObjCRuntime.Protocol::protocol_addMethodDescription(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean)", "System.Void ObjCRuntime.Protocol::protocol_addProperty(System.IntPtr,System.IntPtr,System.IntPtr*,System.Int32,System.Boolean,System.Boolean)", "System.Void ObjCRuntime.Runtime::xamarin_switch_gchandle(System.IntPtr,System.Boolean)", diff --git a/tests/generator/BGenTests.cs b/tests/generator/BGenTests.cs index 4967c6907775..8bd328c5d777 100644 --- a/tests/generator/BGenTests.cs +++ b/tests/generator/BGenTests.cs @@ -145,6 +145,9 @@ public void Bug27428 () } [Test] +#if !NET + [Ignore ("This only works in .NET")] +#endif public void Bug27430 () { BuildFile (Profile.iOS, "bug27430.cs"); @@ -474,14 +477,14 @@ public void Bug53076WithModel () Assert.AreEqual (10, methodCount, "Async method count"); } -#if !NET - // error BI1055: bgen: Internal error: failed to convert type 'System.Runtime.Versioning.SupportedOSPlatformAttribute, System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Please file a bug report (https://github.com/xamarin/xamarin-macios/issues/new) with a test case. [Test] +#if !NET + [Ignore ("This only works in .NET")] +#endif public void StackOverflow20696157 () { BuildFile (Profile.iOS, "sof20696157.cs"); } -#endif [Test] public void HyphenInName () @@ -784,6 +787,9 @@ public void GH5416_setter (Profile profile) public void GHIssue7304 () => BuildFile (Profile.macOSMobile, "ghissue7304.cs"); [Test] +#if !NET + [Ignore ("This only works in .NET")] +#endif public void RefOutParameters () { BuildFile (Profile.macOSMobile, true, "tests/ref-out-parameters.cs"); diff --git a/tests/generator/sof20696157.cs b/tests/generator/sof20696157.cs index eb404b3cecdd..2f4216697583 100644 --- a/tests/generator/sof20696157.cs +++ b/tests/generator/sof20696157.cs @@ -23,7 +23,6 @@ using CoreMedia; using CoreMidi; using CoreMotion; -using CoreServices; using CoreSpotlight; using CoreTelephony; using CoreText; @@ -61,7 +60,6 @@ using NotificationCenter; using ObjCRuntime; using OpenGLES; -using OpenTK; using PassKit; using Photos; using PhotosUI; @@ -86,7 +84,6 @@ using VideoSubscriberAccount; using VideoToolbox; using WatchConnectivity; -using WatchKit; using WebKit; namespace Test { @@ -225,7 +222,6 @@ namespace Test { [Protocol] interface C133 : IUIAppearance { } [Protocol] interface C134 : IUIAppearanceContainer { } [Protocol] interface C135 : INSKeyedArchiverDelegate { } - [Protocol] interface C136 : IINSpeakable { } [Protocol] interface C137 : IAUAudioUnitFactory { } [Protocol] interface C138 : INSKeyedUnarchiverDelegate { } [Protocol] interface C139 : IINStartAudioCallIntentHandling { } @@ -364,7 +360,6 @@ namespace Test { [Protocol] interface C272 : INSFetchRequestResult { } [Protocol] interface C273 : ICSSearchableIndexDelegate { } [Protocol] interface C274 : IUIViewControllerTransitionCoordinator { } - [Protocol] interface C275 : INSURLAuthenticationChallengeSender { } [Protocol] interface C276 : IUIViewControllerTransitionCoordinatorContext { } [Protocol] interface C277 : IUIViewControllerTransitioningDelegate { } [Protocol] interface C278 : IUIFocusEnvironment { } @@ -388,7 +383,6 @@ namespace Test { [Protocol] interface C298 : IGKAchievementViewControllerDelegate { } [Protocol] interface C299 : IGKTurnBasedEventHandlerDelegate { } [Protocol] interface C300 : IUIGestureRecognizerDelegate { } - [Protocol] interface C301 : IGKPeerPickerControllerDelegate { } [Protocol] interface C302 : IGKGameSessionEventListener { } [Protocol] interface C303 : IGKChallengeEventHandlerDelegate { } [Protocol] interface C304 : IGKChallengeListener { } @@ -439,7 +433,6 @@ namespace Test { [Protocol] interface C349 : IUNNotificationContentExtension { } [Protocol] interface C350 : IWKUIDelegate { } [Protocol] interface C351 : IUINavigationControllerDelegate { } - [Protocol] interface C352 : IWKImageAnimatable { } [Protocol] interface C353 : IUIObjectRestoration { } [Protocol] interface C354 : IUIPickerViewDataSource { } [Protocol] interface C355 : IVSAccountManagerDelegate { } @@ -585,7 +578,6 @@ namespace Test { [Protocol][BaseType (typeof (NSObject))] interface M133 : IUIAppearance { } [Protocol][BaseType (typeof (NSObject))] interface M134 : IUIAppearanceContainer { } [Protocol][BaseType (typeof (NSObject))] interface M135 : INSKeyedArchiverDelegate { } - [Protocol][BaseType (typeof (NSObject))] interface M136 : IINSpeakable { } [Protocol][BaseType (typeof (NSObject))] interface M137 : IAUAudioUnitFactory { } [Protocol][BaseType (typeof (NSObject))] interface M138 : INSKeyedUnarchiverDelegate { } [Protocol][BaseType (typeof (NSObject))] interface M139 : IINStartAudioCallIntentHandling { } @@ -724,7 +716,6 @@ namespace Test { [Protocol][BaseType (typeof (NSObject))] interface M272 : INSFetchRequestResult { } [Protocol][BaseType (typeof (NSObject))] interface M273 : ICSSearchableIndexDelegate { } [Protocol][BaseType (typeof (NSObject))] interface M274 : IUIViewControllerTransitionCoordinator { } - [Protocol][BaseType (typeof (NSObject))] interface M275 : INSURLAuthenticationChallengeSender { } [Protocol][BaseType (typeof (NSObject))] interface M276 : IUIViewControllerTransitionCoordinatorContext { } [Protocol][BaseType (typeof (NSObject))] interface M277 : IUIViewControllerTransitioningDelegate { } [Protocol][BaseType (typeof (NSObject))] interface M278 : IUIFocusEnvironment { } @@ -748,7 +739,6 @@ namespace Test { [Protocol][BaseType (typeof (NSObject))] interface M298 : IGKAchievementViewControllerDelegate { } [Protocol][BaseType (typeof (NSObject))] interface M299 : IGKTurnBasedEventHandlerDelegate { } [Protocol][BaseType (typeof (NSObject))] interface M300 : IUIGestureRecognizerDelegate { } - [Protocol][BaseType (typeof (NSObject))] interface M301 : IGKPeerPickerControllerDelegate { } [Protocol][BaseType (typeof (NSObject))] interface M302 : IGKGameSessionEventListener { } [Protocol][BaseType (typeof (NSObject))] interface M303 : IGKChallengeEventHandlerDelegate { } [Protocol][BaseType (typeof (NSObject))] interface M304 : IGKChallengeListener { } diff --git a/tests/interdependent-binding-projects/interdependent-binding-projects.csproj b/tests/interdependent-binding-projects/interdependent-binding-projects.csproj index 86a5aad46b41..1a81509435b9 100644 --- a/tests/interdependent-binding-projects/interdependent-binding-projects.csproj +++ b/tests/interdependent-binding-projects/interdependent-binding-projects.csproj @@ -133,6 +133,7 @@ + {F611ED96-54B5-4975-99BB-12F50AF95936} Touch.Client-iOS