From b4f4bab7a4b8b59c6aa650d7aa5a0a6b52849459 Mon Sep 17 00:00:00 2001 From: Nikita Nemkin Date: Sat, 30 Mar 2019 14:22:05 +0500 Subject: Bug 546144 - [JNI] Revert some recent jnigen changes Revert "Bug 534923 - Cocoa: objc_msgSend is called incorrectly from os.c" This reverts commit 94bbab9593afe86192ce9ff1c7d23f9003c3ef5e. Change-Id: If227caf179ffc8cb018c343d3b99d3535aea8d04 Signed-off-by: Nikita Nemkin --- .../swt/tools/internal/NativesGenerator.java | 37 +- .../eclipse/swt/tools/internal/MacGenerator.java | 5 +- .../Eclipse SWT PI/cocoa/library/os.c | 412 ++++++++++----------- .../cocoa/org/eclipse/swt/internal/cocoa/OS.java | 282 +++++++------- 4 files changed, 353 insertions(+), 383 deletions(-) diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java index c05290e1ee..5816ce8fdb 100644 --- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java +++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java @@ -11,8 +11,7 @@ * Contributors: * IBM Corporation - initial API and implementation * Red Hat Inc. - stop generating pre 1.2 JNI code - * Martin Oberhuber (WindRiver) - [515610] Fix incorrect code for memmove() - * Thomas Wolf [534923] Fix incorrect casts + * Martin Oberhuber (WindRiver) - [515610] Fix incorrect code for memmove() *******************************************************************************/ package org.eclipse.swt.tools.internal; @@ -794,14 +793,12 @@ void generateFunctionCall(JNIMethod method, JNIParameter[] params, JNIType retur if (method.getFlag(Flags.FLAG_CAST)) { output("(("); String returnCast = returnType.getTypeSignature2(!returnType.equals(returnType64)); - if ((name.equals("objc_msgSend_bool") || name.equals("objc_msgSendSuper_bool")) && returnCast.equals("jboolean")) { + if (name.equals("objc_msgSend_bool") && returnCast.equals("jboolean")) { returnCast = "BOOL"; } output(returnCast); output(" (*)("); - int fixedargs = getNumberOfFixedArguments(method); - int n = fixedargs > 0 ? fixedargs : params.length; - for (int i = 0; i < n; i++) { + for (int i = 0; i < params.length; i++) { if (i != 0) output(", "); JNIParameter param = params[i]; String cast = param.getCast(); @@ -819,9 +816,6 @@ void generateFunctionCall(JNIMethod method, JNIParameter[] params, JNIType retur output(paramType.getTypeSignature4(!paramType.equals(paramType64), param.getFlag(FLAG_STRUCT))); } } - if (fixedargs > 0) { - output(", ..."); - } output("))"); } String accessor = method.getAccessor(); @@ -881,8 +875,7 @@ void generate_objc_msgSend_stret (JNIParameter[] params, String func) { JNIType paramType = params[0].getType(), paramType64 = params[0].getType64(); output(paramType.getTypeSignature4(!paramType.equals(paramType64), true)); output(" (*)("); - // Only the fixed arguments - for (int i = 1; i <= 2; i++) { + for (int i = 1; i < params.length; i++) { if (i != 1) output(", "); JNIParameter param = params[i]; String cast = param.getCast(); @@ -900,33 +893,11 @@ void generate_objc_msgSend_stret (JNIParameter[] params, String func) { output(paramType.getTypeSignature4(!paramType.equals(paramType64), param.getFlag(FLAG_STRUCT))); } } - output(", ..."); output("))"); output(func); output(")"); } -/** - * Determines whether the {@code method} has variadic arguments. If so, returns - * the number of fixed parameters (always {@code > 0}). Otherwise returns zero, - * which indicates that all parameters are fixed. - * - * @param method to examine - * @return the number of fixed parameters, or zero if all parameters are fixed - * (the method has no varargs) - */ -int getNumberOfFixedArguments(JNIMethod method) { - Object param = method.getParam("fixedargs"); - if (param == null) { - return 0; - } - String number = param.toString(); - if (number.isEmpty()) { - return 0; - } - return Integer.parseInt(number); -} - void generateReturn(JNIType returnType, boolean needsReturn) { if (needsReturn && !returnType.isType("void")) { outputln("\treturn rc;"); diff --git a/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGenerator.java b/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGenerator.java index 4c73931ff6..90cf587667 100644 --- a/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGenerator.java +++ b/bundles/org.eclipse.swt.tools/Mac Generation/org/eclipse/swt/tools/internal/MacGenerator.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2008, 2019 IBM Corporation and others. + * Copyright (c) 2008, 2017 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 @@ -10,7 +10,6 @@ * * Contributors: * IBM Corporation - initial API and implementation - * Thomas Wolf [534923] Annotate sends "fixedargs=2" *******************************************************************************/ package org.eclipse.swt.tools.internal; @@ -1743,7 +1742,7 @@ void generateSends(boolean superCall) { outln(); out(" *"); } - out(" @method flags=cast,fixedargs=2"); + out(" @method flags=cast"); if (tags.size() > 0) outln(); for (String tag : tags) { out(tag); diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/library/os.c b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/library/os.c index 8aaa9f432c..84d7d2e36b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/library/os.c +++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/library/os.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2019 IBM Corporation and others. + * Copyright (c) 2000, 2018 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 @@ -7074,7 +7074,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ)(JNIEnv *env, jclass that #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1); + rc = (jintLong)((jintLong (*)(jintLong, jintLong))objc_msgSend)(arg0, arg1); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__II_FUNC); #else @@ -7097,7 +7097,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJD)(JNIEnv *env, jclass tha #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJD_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jdouble))objc_msgSend)(arg0, arg1, arg2); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IID_FUNC); #else @@ -7120,7 +7120,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJDJJJZ)(JNIEnv *env, jclass #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJDJJJZ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jdouble, jintLong, jintLong, jintLong, jboolean))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIDIIIZ_FUNC); #else @@ -7136,7 +7136,7 @@ JNIEXPORT jint JNICALL OS_NATIVE(objc_1msgSend__IIF) { jint rc = 0; OS_NATIVE_ENTER(env, that, objc_1msgSend__IIF_FUNC); - rc = (jint)((jint (*)(jint, jint, ...))objc_msgSend)(arg0, arg1, arg2); + rc = (jint)((jint (*)(jint, jint, jfloat))objc_msgSend)(arg0, arg1, arg2); OS_NATIVE_EXIT(env, that, objc_1msgSend__IIF_FUNC); return rc; } @@ -7155,7 +7155,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJDD)(JNIEnv *env, jclass th #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJDD_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jfloatDouble, jfloatDouble))objc_msgSend)(arg0, arg1, arg2, arg3); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIFF_FUNC); #else @@ -7178,7 +7178,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJDDDD)(JNIEnv *env, jclass #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJDDDD_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jfloatDouble, jfloatDouble, jfloatDouble, jfloatDouble))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIFFFF_FUNC); #else @@ -7201,7 +7201,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJDJ)(JNIEnv *env, jclass th #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJDJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jfloatDouble, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIFI_FUNC); #else @@ -7224,7 +7224,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJ)(JNIEnv *env, jclass tha #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__III_FUNC); #else @@ -7247,7 +7247,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJD)(JNIEnv *env, jclass th #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJD_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jfloatDouble))objc_msgSend)(arg0, arg1, arg2, arg3); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIF_FUNC); #else @@ -7270,7 +7270,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJ)(JNIEnv *env, jclass th #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIII_FUNC); #else @@ -7293,7 +7293,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJDJ)(JNIEnv *env, jclass #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJDJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jdouble, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIIDI_FUNC); #else @@ -7316,7 +7316,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJJ)(JNIEnv *env, jclass t #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3, arg4); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIII_FUNC); #else @@ -7339,7 +7339,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJJD)(JNIEnv *env, jclass #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJJD_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jintLong, jfloatDouble))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIIIF_FUNC); #else @@ -7362,7 +7362,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJJJ)(JNIEnv *env, jclass #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJJJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIIII_FUNC); #else @@ -7385,7 +7385,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJJJJ)(JNIEnv *env, jclass #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJJJJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIIIII_FUNC); #else @@ -7408,7 +7408,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJJJJJ)(JNIEnv *env, jclas #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJJJJJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIIIIII_FUNC); #else @@ -7431,7 +7431,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJJJJJJ)(JNIEnv *env, jcla #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJJJJJJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIIIIIII_FUNC); #else @@ -7454,7 +7454,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJJJJZZJJJ)(JNIEnv *env, j #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJJJJZZJJJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jboolean, jboolean, jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIIIIIZZIII_FUNC); #else @@ -7477,7 +7477,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJJJJZZJJJJ)(JNIEnv *env, #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJJJJZZJJJJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jboolean, jboolean, jintLong, jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIIIIIZZIIII_FUNC); #else @@ -7500,7 +7500,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJJZ)(JNIEnv *env, jclass #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJJZ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jintLong, jboolean))objc_msgSend)(arg0, arg1, arg2, arg3, arg4, arg5); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIIIZ_FUNC); #else @@ -7525,7 +7525,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJLorg_eclipse_swt_interna OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJLorg_eclipse_swt_internal_cocoa_NSRange_2_FUNC); #endif if (arg4) if ((lparg4 = getNSRangeFields(env, arg4, &_arg4)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, *lparg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, NSRange))objc_msgSend)(arg0, arg1, arg2, arg3, *lparg4); fail: if (arg4 && lparg4) setNSRangeFields(env, arg4, lparg4); #ifndef JNI64 @@ -7550,7 +7550,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJJZ)(JNIEnv *env, jclass t #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJJZ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3, arg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jintLong, jboolean))objc_msgSend)(arg0, arg1, arg2, arg3, arg4); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIIZ_FUNC); #else @@ -7575,7 +7575,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJLorg_eclipse_swt_internal OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJLorg_eclipse_swt_internal_cocoa_NSPoint_2_FUNC); #endif if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, *lparg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, NSPoint))objc_msgSend)(arg0, arg1, arg2, *lparg3); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); #ifndef JNI64 @@ -7602,7 +7602,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJLorg_eclipse_swt_internal OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJLorg_eclipse_swt_internal_cocoa_NSPoint_2J_FUNC); #endif if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, *lparg3, arg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, NSPoint, jintLong))objc_msgSend)(arg0, arg1, arg2, *lparg3, arg4); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); #ifndef JNI64 @@ -7629,7 +7629,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJLorg_eclipse_swt_internal OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJLorg_eclipse_swt_internal_cocoa_NSPoint_2JDJJJJJ_FUNC); #endif if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, *lparg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, NSPoint, jintLong, jdouble, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2, *lparg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); #ifndef JNI64 @@ -7656,7 +7656,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJLorg_eclipse_swt_internal OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJLorg_eclipse_swt_internal_cocoa_NSPoint_2JDJJSJJ_FUNC); #endif if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, *lparg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, NSPoint, jintLong, jdouble, jintLong, jintLong, jshort, jintLong, jintLong))objc_msgSend)(arg0, arg1, arg2, *lparg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); #ifndef JNI64 @@ -7685,7 +7685,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJLorg_eclipse_swt_internal #endif if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; if (arg4) if ((lparg4 = getNSSizeFields(env, arg4, &_arg4)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, *lparg3, *lparg4, arg5, arg6, arg7, arg8); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, NSPoint, NSSize, jintLong, jintLong, jintLong, jboolean))objc_msgSend)(arg0, arg1, arg2, *lparg3, *lparg4, arg5, arg6, arg7, arg8); fail: if (arg4 && lparg4) setNSSizeFields(env, arg4, lparg4); if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); @@ -7713,7 +7713,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJLorg_eclipse_swt_internal OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJLorg_eclipse_swt_internal_cocoa_NSRange_2_FUNC); #endif if (arg3) if ((lparg3 = getNSRangeFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, *lparg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, NSRange))objc_msgSend)(arg0, arg1, arg2, *lparg3); fail: if (arg3 && lparg3) setNSRangeFields(env, arg3, lparg3); #ifndef JNI64 @@ -7740,7 +7740,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJLorg_eclipse_swt_internal OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJLorg_eclipse_swt_internal_cocoa_NSRect_2J_FUNC); #endif if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, *lparg3, arg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, NSRect, jintLong))objc_msgSend)(arg0, arg1, arg2, *lparg3, arg4); fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); #ifndef JNI64 @@ -7765,7 +7765,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJJZ)(JNIEnv *env, jclass th #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJJZ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong, jboolean))objc_msgSend)(arg0, arg1, arg2, arg3); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIIZ_FUNC); #else @@ -7790,7 +7790,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2_FUNC); #endif if (arg2) if ((lparg2 = getNSAffineTransformStructFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSAffineTransformStruct))objc_msgSend)(arg0, arg1, *lparg2); fail: if (arg2 && lparg2) setNSAffineTransformStructFields(env, arg2, lparg2); #ifndef JNI64 @@ -7817,7 +7817,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSPoint_2_FUNC); #endif if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSPoint))objc_msgSend)(arg0, arg1, *lparg2); fail: if (arg2 && lparg2) setNSPointFields(env, arg2, lparg2); #ifndef JNI64 @@ -7844,7 +7844,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSPoint_2DDD_FUNC); #endif if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSPoint, jfloatDouble, jfloatDouble, jfloatDouble))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5); fail: if (arg2 && lparg2) setNSPointFields(env, arg2, lparg2); #ifndef JNI64 @@ -7871,7 +7871,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSPoint_2DDDZ_FUNC); #endif if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5, arg6); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSPoint, jfloatDouble, jfloatDouble, jfloatDouble, jboolean))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5, arg6); fail: if (arg2 && lparg2) setNSPointFields(env, arg2, lparg2); #ifndef JNI64 @@ -7898,7 +7898,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSPoint_2J_FUNC); #endif if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSPoint, jintLong))objc_msgSend)(arg0, arg1, *lparg2, arg3); fail: if (arg2 && lparg2) setNSPointFields(env, arg2, lparg2); #ifndef JNI64 @@ -7927,7 +7927,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ #endif if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg4) if ((lparg4 = (*env)->GetFloatDoubleArrayElements(env, arg4, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, lparg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSPoint, jintLong, jfloatDouble *))objc_msgSend)(arg0, arg1, *lparg2, arg3, lparg4); fail: if (arg4 && lparg4) (*env)->ReleaseFloatDoubleArrayElements(env, arg4, lparg4, 0); if (arg2 && lparg2) setNSPointFields(env, arg2, lparg2); @@ -7957,7 +7957,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ #endif if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, arg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSPoint, NSPoint, jintLong))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, arg4); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); if (arg2 && lparg2) setNSPointFields(env, arg2, lparg2); @@ -7989,7 +7989,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; if (arg4) if ((lparg4 = getNSPointFields(env, arg4, &_arg4)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, *lparg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSPoint, NSPoint, NSPoint))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, *lparg4); fail: if (arg4 && lparg4) setNSPointFields(env, arg4, lparg4); if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); @@ -8020,7 +8020,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ #endif if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSPoint, NSRect, jintLong, jfloatDouble))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, arg4, arg5); fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); if (arg2 && lparg2) setNSPointFields(env, arg2, lparg2); @@ -8048,7 +8048,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRange_2_FUNC); #endif if (arg2) if ((lparg2 = getNSRangeFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRange))objc_msgSend)(arg0, arg1, *lparg2); fail: if (arg2 && lparg2) setNSRangeFields(env, arg2, lparg2); #ifndef JNI64 @@ -8075,7 +8075,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRange_2J_FUNC); #endif if (arg2) if ((lparg2 = getNSRangeFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRange, jintLong))objc_msgSend)(arg0, arg1, *lparg2, arg3); fail: if (arg2 && lparg2) setNSRangeFields(env, arg2, lparg2); #ifndef JNI64 @@ -8104,7 +8104,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ #endif if (arg2) if ((lparg2 = getNSRangeFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg7) if ((lparg7 = (*env)->GetByteArrayElements(env, arg7, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5, arg6, lparg7); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRange, jintLong, jintLong, jintLong, jintLong, jbyte *))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5, arg6, lparg7); fail: if (arg7 && lparg7) (*env)->ReleaseByteArrayElements(env, arg7, lparg7, 0); if (arg2 && lparg2) setNSRangeFields(env, arg2, lparg2); @@ -8134,7 +8134,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ #endif if (arg2) if ((lparg2 = getNSRangeFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, *lparg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRange, NSPoint))objc_msgSend)(arg0, arg1, *lparg2, *lparg3); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); if (arg2 && lparg2) setNSRangeFields(env, arg2, lparg2); @@ -8166,7 +8166,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ if (arg2) if ((lparg2 = getNSRangeFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRangeFields(env, arg3, &_arg3)) == NULL) goto fail; if (arg5) if ((lparg5 = (*env)->GetIntLongArrayElements(env, arg5, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, arg4, lparg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRange, NSRange, jintLong, jintLong *))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, arg4, lparg5); fail: if (arg5 && lparg5) (*env)->ReleaseIntLongArrayElements(env, arg5, lparg5, 0); if (arg3 && lparg3) setNSRangeFields(env, arg3, lparg3); @@ -8195,7 +8195,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect))objc_msgSend)(arg0, arg1, *lparg2); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8222,7 +8222,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2D_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, jfloatDouble))objc_msgSend)(arg0, arg1, *lparg2, arg3); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8249,7 +8249,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2DD_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, jfloatDouble, jfloatDouble))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8276,7 +8276,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2J_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, jintLong))objc_msgSend)(arg0, arg1, *lparg2, arg3); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8303,7 +8303,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2JJ_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, jintLong, jintLong))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8330,7 +8330,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2JJJ_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, jintLong, jintLong, jintLong))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8357,7 +8357,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2JJZ_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, jintLong, jintLong, jboolean))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8384,7 +8384,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2JJZJ_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5, arg6); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, jintLong, jintLong, jboolean, jintLong))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5, arg6); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8411,7 +8411,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2JZJ_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, jintLong, jboolean, jintLong))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4, arg5); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8440,7 +8440,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, *lparg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, NSPoint))objc_msgSend)(arg0, arg1, *lparg2, *lparg3); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); @@ -8472,7 +8472,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRangeFields(env, arg3, &_arg3)) == NULL) goto fail; if (arg4) if ((lparg4 = getNSRectFields(env, arg4, &_arg4)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, *lparg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, NSRange, NSRect))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, *lparg4); fail: if (arg4 && lparg4) setNSRectFields(env, arg4, lparg4); if (arg3 && lparg3) setNSRangeFields(env, arg3, lparg3); @@ -8503,7 +8503,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, NSRect, jintLong, jfloatDouble))objc_msgSend)(arg0, arg1, *lparg2, *lparg3, arg4, arg5); fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); @@ -8533,7 +8533,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSSizeFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, *lparg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, NSSize))objc_msgSend)(arg0, arg1, *lparg2, *lparg3); fail: if (arg3 && lparg3) setNSSizeFields(env, arg3, lparg3); if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); @@ -8561,7 +8561,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2Z_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, jboolean))objc_msgSend)(arg0, arg1, *lparg2, arg3); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8588,7 +8588,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSRect_2ZZ_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSRect, jboolean, jboolean))objc_msgSend)(arg0, arg1, *lparg2, arg3, arg4); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -8615,7 +8615,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJLorg_eclipse_swt_internal_ OS_NATIVE_ENTER(env, that, objc_1msgSend__JJLorg_eclipse_swt_internal_cocoa_NSSize_2_FUNC); #endif if (arg2) if ((lparg2 = getNSSizeFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, *lparg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, NSSize))objc_msgSend)(arg0, arg1, *lparg2); fail: if (arg2 && lparg2) setNSSizeFields(env, arg2, lparg2); #ifndef JNI64 @@ -8640,7 +8640,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJZ)(JNIEnv *env, jclass tha #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJZ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jboolean))objc_msgSend)(arg0, arg1, arg2); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIZ_FUNC); #else @@ -8663,7 +8663,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJZJ)(JNIEnv *env, jclass th #else OS_NATIVE_ENTER(env, that, objc_1msgSend__JJZJ_FUNC); #endif - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jboolean, jintLong))objc_msgSend)(arg0, arg1, arg2, arg3); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend__IIZI_FUNC); #else @@ -8688,7 +8688,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJZLorg_eclipse_swt_internal OS_NATIVE_ENTER(env, that, objc_1msgSend__JJZLorg_eclipse_swt_internal_cocoa_NSRect_2_FUNC); #endif if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, arg2, *lparg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jboolean, NSRect))objc_msgSend)(arg0, arg1, arg2, *lparg3); fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); #ifndef JNI64 @@ -8715,7 +8715,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ_3B)(JNIEnv *env, jclass t OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3B_FUNC); #endif if (arg2) if ((lparg2 = (*env)->GetByteArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, lparg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jbyte *))objc_msgSend)(arg0, arg1, lparg2); fail: if (arg2 && lparg2) (*env)->ReleaseByteArrayElements(env, arg2, lparg2, 0); #ifndef JNI64 @@ -8742,7 +8742,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ_3BJ)(JNIEnv *env, jclass OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3BJ_FUNC); #endif if (arg2) if ((lparg2 = (*env)->GetByteArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, lparg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jbyte *, jintLong))objc_msgSend)(arg0, arg1, lparg2, arg3); fail: if (arg2 && lparg2) (*env)->ReleaseByteArrayElements(env, arg2, lparg2, 0); #ifndef JNI64 @@ -8769,7 +8769,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ_3C)(JNIEnv *env, jclass t OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3C_FUNC); #endif if (arg2) if ((lparg2 = (*env)->GetCharArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, lparg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jchar *))objc_msgSend)(arg0, arg1, lparg2); fail: if (arg2 && lparg2) (*env)->ReleaseCharArrayElements(env, arg2, lparg2, 0); #ifndef JNI64 @@ -8796,7 +8796,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ_3CJ)(JNIEnv *env, jclass OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3CJ_FUNC); #endif if (arg2) if ((lparg2 = (*env)->GetCharArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, lparg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jchar *, jintLong))objc_msgSend)(arg0, arg1, lparg2, arg3); fail: if (arg2 && lparg2) (*env)->ReleaseCharArrayElements(env, arg2, lparg2, 0); #ifndef JNI64 @@ -8825,7 +8825,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ_3CLorg_eclipse_swt_intern #endif if (arg2) if ((lparg2 = (*env)->GetCharArrayElements(env, arg2, NULL)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRangeFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, lparg2, *lparg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jchar *, NSRange))objc_msgSend)(arg0, arg1, lparg2, *lparg3); fail: if (arg3 && lparg3) setNSRangeFields(env, arg3, lparg3); if (arg2 && lparg2) (*env)->ReleaseCharArrayElements(env, arg2, lparg2, 0); @@ -8853,7 +8853,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ_3D)(JNIEnv *env, jclass t OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3D_FUNC); #endif if (arg2) if ((lparg2 = (*env)->GetFloatDoubleArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, lparg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jfloatDouble *))objc_msgSend)(arg0, arg1, lparg2); fail: if (arg2 && lparg2) (*env)->ReleaseFloatDoubleArrayElements(env, arg2, lparg2, 0); #ifndef JNI64 @@ -8880,7 +8880,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ_3DJD)(JNIEnv *env, jclass OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3DJD_FUNC); #endif if (arg2) if ((lparg2 = (*env)->GetFloatDoubleArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, lparg2, arg3, arg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jfloatDouble *, jintLong, jfloatDouble))objc_msgSend)(arg0, arg1, lparg2, arg3, arg4); fail: if (arg2 && lparg2) (*env)->ReleaseFloatDoubleArrayElements(env, arg2, lparg2, 0); #ifndef JNI64 @@ -8907,7 +8907,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ_3J)(JNIEnv *env, jclass t OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3J_FUNC); #endif if (arg2) if ((lparg2 = (*env)->GetIntLongArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, lparg2); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong *))objc_msgSend)(arg0, arg1, lparg2); fail: if (arg2 && lparg2) (*env)->ReleaseIntLongArrayElements(env, arg2, lparg2, 0); #ifndef JNI64 @@ -8934,7 +8934,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ_3IJ)(JNIEnv *env, jclass OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3IJ_FUNC); #endif if (arg2) if ((lparg2 = (*env)->GetIntArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, lparg2, arg3); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jint *, jintLong))objc_msgSend)(arg0, arg1, lparg2, arg3); fail: if (arg2 && lparg2) (*env)->ReleaseIntArrayElements(env, arg2, lparg2, 0); #ifndef JNI64 @@ -8961,7 +8961,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSend__JJ_3JII)(JNIEnv *env, jclass OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3JII_FUNC); #endif if (arg2) if ((lparg2 = (*env)->GetIntLongArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(jintLong, jintLong, ...))objc_msgSend)(arg0, arg1, lparg2, arg3, arg4); + rc = (jintLong)((jintLong (*)(jintLong, jintLong, jintLong *, jint, jint))objc_msgSend)(arg0, arg1, lparg2, arg3, arg4); fail: if (arg2 && lparg2) (*env)->ReleaseIntLongArrayElements(env, arg2, lparg2, 0); #ifndef JNI64 @@ -8979,7 +8979,7 @@ JNIEXPORT jlong JNICALL OS_NATIVE(objc_1msgSend__JJI) { jlong rc = 0; OS_NATIVE_ENTER(env, that, objc_1msgSend__JJI_FUNC); - rc = (jlong)((jlong (*)(jlong, jlong, ...))objc_msgSend)(arg0, arg1, arg2); + rc = (jlong)((jlong (*)(jlong, jlong, jint))objc_msgSend)(arg0, arg1, arg2); OS_NATIVE_EXIT(env, that, objc_1msgSend__JJI_FUNC); return rc; } @@ -8993,7 +8993,7 @@ JNIEXPORT jlong JNICALL OS_NATIVE(objc_1msgSend__JJ_3I) jlong rc = 0; OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3I_FUNC); if (arg2) if ((lparg2 = (*env)->GetIntArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jlong)((jlong (*)(jlong, jlong, ...))objc_msgSend)(arg0, arg1, lparg2); + rc = (jlong)((jlong (*)(jlong, jlong, jint *))objc_msgSend)(arg0, arg1, lparg2); fail: if (arg2 && lparg2) (*env)->ReleaseIntArrayElements(env, arg2, lparg2, 0); OS_NATIVE_EXIT(env, that, objc_1msgSend__JJ_3I_FUNC); @@ -9009,7 +9009,7 @@ JNIEXPORT jlong JNICALL OS_NATIVE(objc_1msgSend__JJ_3JJJ) jlong rc = 0; OS_NATIVE_ENTER(env, that, objc_1msgSend__JJ_3JJJ_FUNC); if (arg2) if ((lparg2 = (*env)->GetLongArrayElements(env, arg2, NULL)) == NULL) goto fail; - rc = (jlong)((jlong (*)(jlong, jlong, ...))objc_msgSend)(arg0, arg1, lparg2, arg3, arg4); + rc = (jlong)((jlong (*)(jlong, jlong, jlong *, jlong, jlong))objc_msgSend)(arg0, arg1, lparg2, arg3, arg4); fail: if (arg2 && lparg2) (*env)->ReleaseLongArrayElements(env, arg2, lparg2, 0); OS_NATIVE_EXIT(env, that, objc_1msgSend__JJ_3JJJ_FUNC); @@ -9032,7 +9032,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern OS_NATIVE_ENTER(env, that, objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2J_FUNC); #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong))objc_msgSendSuper)(lparg0, arg1); fail: if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); #ifndef JNI64 @@ -9059,7 +9059,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern OS_NATIVE_ENTER(env, that, objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2JJ_FUNC); #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, arg2); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, jintLong))objc_msgSendSuper)(lparg0, arg1, arg2); fail: if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); #ifndef JNI64 @@ -9086,7 +9086,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern OS_NATIVE_ENTER(env, that, objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2JJJ_FUNC); #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, arg2, arg3); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, jintLong, jintLong))objc_msgSendSuper)(lparg0, arg1, arg2, arg3); fail: if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); #ifndef JNI64 @@ -9113,7 +9113,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern OS_NATIVE_ENTER(env, that, objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2JJJJJ_FUNC); #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, arg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSendSuper)(lparg0, arg1, arg2, arg3, arg4, arg5); fail: if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); #ifndef JNI64 @@ -9140,7 +9140,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern OS_NATIVE_ENTER(env, that, objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2JJJJZ_FUNC); #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, arg2, arg3, arg4, arg5); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, jintLong, jintLong, jintLong, jboolean))objc_msgSendSuper)(lparg0, arg1, arg2, arg3, arg4, arg5); fail: if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); #ifndef JNI64 @@ -9169,7 +9169,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, arg2, *lparg3); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, jintLong, NSPoint))objc_msgSendSuper)(lparg0, arg1, arg2, *lparg3); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); @@ -9199,7 +9199,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, arg2, *lparg3, arg4); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, jintLong, NSPoint, jintLong))objc_msgSendSuper)(lparg0, arg1, arg2, *lparg3, arg4); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); @@ -9229,7 +9229,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, arg2, *lparg3, arg4); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, jintLong, NSRect, jintLong))objc_msgSendSuper)(lparg0, arg1, arg2, *lparg3, arg4); fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); @@ -9257,7 +9257,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern OS_NATIVE_ENTER(env, that, objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2JJZ_FUNC); #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, arg2, arg3); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, jintLong, jboolean))objc_msgSendSuper)(lparg0, arg1, arg2, arg3); fail: if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); #ifndef JNI64 @@ -9286,7 +9286,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, *lparg2); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, NSPoint))objc_msgSendSuper)(lparg0, arg1, *lparg2); fail: if (arg2 && lparg2) setNSPointFields(env, arg2, lparg2); if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); @@ -9316,7 +9316,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, *lparg2); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, NSRect))objc_msgSendSuper)(lparg0, arg1, *lparg2); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); @@ -9346,7 +9346,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, *lparg2, arg3); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, NSRect, jintLong))objc_msgSendSuper)(lparg0, arg1, *lparg2, arg3); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); @@ -9376,7 +9376,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg2) if ((lparg2 = getNSSizeFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, *lparg2); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, NSSize))objc_msgSendSuper)(lparg0, arg1, *lparg2); fail: if (arg2 && lparg2) setNSSizeFields(env, arg2, lparg2); if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); @@ -9404,7 +9404,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern OS_NATIVE_ENTER(env, that, objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2JZ_FUNC); #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, arg2); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, jboolean))objc_msgSendSuper)(lparg0, arg1, arg2); fail: if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); #ifndef JNI64 @@ -9433,7 +9433,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(objc_1msgSendSuper__Lorg_eclipse_swt_intern #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg0, arg1, arg2, *lparg3); + rc = (jintLong)((jintLong (*)(struct objc_super *, jintLong, jboolean, NSRect))objc_msgSendSuper)(lparg0, arg1, arg2, *lparg3); fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); @@ -9463,7 +9463,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSendSuper_1bool__Lorg_eclipse_swt_ #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jboolean)((BOOL (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper_bool)(lparg0, arg1, arg2, *lparg3); + rc = (jboolean)((jboolean (*)(struct objc_super *, jintLong, jintLong, NSPoint))objc_msgSendSuper_bool)(lparg0, arg1, arg2, *lparg3); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); @@ -9493,7 +9493,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSendSuper_1bool__Lorg_eclipse_swt_ #endif if (arg0) if ((lparg0 = getobjc_superFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg2) if ((lparg2 = getNSRangeFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jboolean)((BOOL (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper_bool)(lparg0, arg1, *lparg2, arg3); + rc = (jboolean)((jboolean (*)(struct objc_super *, jintLong, NSRange, jintLong))objc_msgSendSuper_bool)(lparg0, arg1, *lparg2, arg3); fail: if (arg2 && lparg2) setNSRangeFields(env, arg2, lparg2); if (arg0 && lparg0) setobjc_superFields(env, arg0, lparg0); @@ -9523,11 +9523,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSendSuper_1stret__Lorg_eclipse_swt_int if (arg0) if ((lparg0 = getNSRectFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg1) if ((lparg1 = getobjc_superFields(env, arg1, &_arg1)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, struct objc_super *, ...))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, arg3); + ((void (*)(NSRect *, struct objc_super *, jintLong, jintLong))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, arg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper_stret)(lparg1, arg2, arg3); + *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, jintLong))objc_msgSendSuper_stret)(lparg1, arg2, arg3); } else { - *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg1, arg2, arg3); + *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, jintLong))objc_msgSendSuper)(lparg1, arg2, arg3); } fail: if (arg1 && lparg1) setobjc_superFields(env, arg1, lparg1); @@ -9559,11 +9559,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSendSuper_1stret__Lorg_eclipse_swt_int if (arg1) if ((lparg1 = getobjc_superFields(env, arg1, &_arg1)) == NULL) goto fail; if (arg4) if ((lparg4 = getNSRectFields(env, arg4, &_arg4)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, struct objc_super *, ...))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, arg3, *lparg4, arg5); + ((void (*)(NSRect *, struct objc_super *, jintLong, jintLong, NSRect, jintLong))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, arg3, *lparg4, arg5); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper_stret)(lparg1, arg2, arg3, *lparg4, arg5); + *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, jintLong, NSRect, jintLong))objc_msgSendSuper_stret)(lparg1, arg2, arg3, *lparg4, arg5); } else { - *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg1, arg2, arg3, *lparg4, arg5); + *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, jintLong, NSRect, jintLong))objc_msgSendSuper)(lparg1, arg2, arg3, *lparg4, arg5); } fail: if (arg4 && lparg4) setNSRectFields(env, arg4, lparg4); @@ -9596,11 +9596,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSendSuper_1stret__Lorg_eclipse_swt_int if (arg1) if ((lparg1 = getobjc_superFields(env, arg1, &_arg1)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, struct objc_super *, ...))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, *lparg3); + ((void (*)(NSRect *, struct objc_super *, jintLong, NSRect))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, *lparg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper_stret)(lparg1, arg2, *lparg3); + *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, NSRect))objc_msgSendSuper_stret)(lparg1, arg2, *lparg3); } else { - *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg1, arg2, *lparg3); + *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, NSRect))objc_msgSendSuper)(lparg1, arg2, *lparg3); } fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); @@ -9633,11 +9633,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSendSuper_1stret__Lorg_eclipse_swt_int if (arg1) if ((lparg1 = getobjc_superFields(env, arg1, &_arg1)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, struct objc_super *, ...))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, *lparg3, arg4); + ((void (*)(NSRect *, struct objc_super *, jintLong, NSRect, jintLong))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, *lparg3, arg4); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper_stret)(lparg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, NSRect, jintLong))objc_msgSendSuper_stret)(lparg1, arg2, *lparg3, arg4); } else { - *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSRect (*)(struct objc_super *, jintLong, NSRect, jintLong))objc_msgSendSuper)(lparg1, arg2, *lparg3, arg4); } fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); @@ -9668,11 +9668,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSendSuper_1stret__Lorg_eclipse_swt_int if (arg0) if ((lparg0 = getNSSizeFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg1) if ((lparg1 = getobjc_superFields(env, arg1, &_arg1)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSSize *, struct objc_super *, ...))objc_msgSendSuper_stret)(lparg0, lparg1, arg2); + ((void (*)(NSSize *, struct objc_super *, jintLong))objc_msgSendSuper_stret)(lparg0, lparg1, arg2); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper_stret)(lparg1, arg2); + *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong))objc_msgSendSuper_stret)(lparg1, arg2); } else { - *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg1, arg2); + *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong))objc_msgSendSuper)(lparg1, arg2); } fail: if (arg1 && lparg1) setobjc_superFields(env, arg1, lparg1); @@ -9704,11 +9704,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSendSuper_1stret__Lorg_eclipse_swt_int if (arg1) if ((lparg1 = getobjc_superFields(env, arg1, &_arg1)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSSize *, struct objc_super *, ...))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, *lparg3); + ((void (*)(NSSize *, struct objc_super *, jintLong, NSRect))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, *lparg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper_stret)(lparg1, arg2, *lparg3); + *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong, NSRect))objc_msgSendSuper_stret)(lparg1, arg2, *lparg3); } else { - *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg1, arg2, *lparg3); + *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong, NSRect))objc_msgSendSuper)(lparg1, arg2, *lparg3); } fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); @@ -9739,11 +9739,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSendSuper_1stret__Lorg_eclipse_swt_int if (arg0) if ((lparg0 = getNSSizeFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg1) if ((lparg1 = getobjc_superFields(env, arg1, &_arg1)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSSize *, struct objc_super *, ...))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, arg3); + ((void (*)(NSSize *, struct objc_super *, jintLong, jboolean))objc_msgSendSuper_stret)(lparg0, lparg1, arg2, arg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper_stret)(lparg1, arg2, arg3); + *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong, jboolean))objc_msgSendSuper_stret)(lparg1, arg2, arg3); } else { - *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong, ...))objc_msgSendSuper)(lparg1, arg2, arg3); + *lparg0 = (*(NSSize (*)(struct objc_super *, jintLong, jboolean))objc_msgSendSuper)(lparg1, arg2, arg3); } fail: if (arg1 && lparg1) setobjc_superFields(env, arg1, lparg1); @@ -9769,7 +9769,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJ)(JNIEnv *env, jclas #else OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJ_FUNC); #endif - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1); + rc = (jboolean)((BOOL (*)(jintLong, jintLong))objc_msgSend_bool)(arg0, arg1); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend_1bool__II_FUNC); #else @@ -9792,7 +9792,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJJ)(JNIEnv *env, jcla #else OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJJ_FUNC); #endif - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, arg2); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, jintLong))objc_msgSend_bool)(arg0, arg1, arg2); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend_1bool__III_FUNC); #else @@ -9815,7 +9815,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJJJ)(JNIEnv *env, jcl #else OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJJJ_FUNC); #endif - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, arg2, arg3); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, jintLong, jintLong))objc_msgSend_bool)(arg0, arg1, arg2, arg3); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend_1bool__IIII_FUNC); #else @@ -9838,7 +9838,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJJJJ)(JNIEnv *env, jc #else OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJJJJ_FUNC); #endif - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, arg2, arg3, arg4); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend_bool)(arg0, arg1, arg2, arg3, arg4); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend_1bool__IIIII_FUNC); #else @@ -9861,7 +9861,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJJJJJ)(JNIEnv *env, j #else OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJJJJJ_FUNC); #endif - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, arg2, arg3, arg4, arg5); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend_bool)(arg0, arg1, arg2, arg3, arg4, arg5); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend_1bool__IIIIII_FUNC); #else @@ -9884,7 +9884,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJJJJJJ)(JNIEnv *env, #else OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJJJJJJ_FUNC); #endif - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend_bool)(arg0, arg1, arg2, arg3, arg4, arg5, arg6); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend_1bool__IIIIIII_FUNC); #else @@ -9909,7 +9909,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJJLorg_eclipse_swt_in OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJJLorg_eclipse_swt_internal_cocoa_NSPoint_2_FUNC); #endif if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, arg2, *lparg3); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, jintLong, NSPoint))objc_msgSend_bool)(arg0, arg1, arg2, *lparg3); fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); #ifndef JNI64 @@ -9936,7 +9936,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJJLorg_eclipse_swt_in OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJJLorg_eclipse_swt_internal_cocoa_NSSize_2Z_FUNC); #endif if (arg3) if ((lparg3 = getNSSizeFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, arg2, *lparg3, arg4); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, jintLong, NSSize, jboolean))objc_msgSend_bool)(arg0, arg1, arg2, *lparg3, arg4); fail: if (arg3 && lparg3) setNSSizeFields(env, arg3, lparg3); #ifndef JNI64 @@ -9963,7 +9963,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJLorg_eclipse_swt_int OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJLorg_eclipse_swt_internal_cocoa_NSPoint_2_FUNC); #endif if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, *lparg2); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, NSPoint))objc_msgSend_bool)(arg0, arg1, *lparg2); fail: if (arg2 && lparg2) setNSPointFields(env, arg2, lparg2); #ifndef JNI64 @@ -9992,7 +9992,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJLorg_eclipse_swt_int #endif if (arg2) if ((lparg2 = getNSPointFields(env, arg2, &_arg2)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, *lparg2, *lparg3); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, NSPoint, NSRect))objc_msgSend_bool)(arg0, arg1, *lparg2, *lparg3); fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); if (arg2 && lparg2) setNSPointFields(env, arg2, lparg2); @@ -10020,7 +10020,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJLorg_eclipse_swt_int OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJLorg_eclipse_swt_internal_cocoa_NSRange_2J_FUNC); #endif if (arg2) if ((lparg2 = getNSRangeFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, *lparg2, arg3); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, NSRange, jintLong))objc_msgSend_bool)(arg0, arg1, *lparg2, arg3); fail: if (arg2 && lparg2) setNSRangeFields(env, arg2, lparg2); #ifndef JNI64 @@ -10047,7 +10047,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJLorg_eclipse_swt_int OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJLorg_eclipse_swt_internal_cocoa_NSRect_2_FUNC); #endif if (arg2) if ((lparg2 = getNSRectFields(env, arg2, &_arg2)) == NULL) goto fail; - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, *lparg2); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, NSRect))objc_msgSend_bool)(arg0, arg1, *lparg2); fail: if (arg2 && lparg2) setNSRectFields(env, arg2, lparg2); #ifndef JNI64 @@ -10072,7 +10072,7 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(objc_1msgSend_1bool__JJS)(JNIEnv *env, jcla #else OS_NATIVE_ENTER(env, that, objc_1msgSend_1bool__JJS_FUNC); #endif - rc = (jboolean)((BOOL (*)(jintLong, jintLong, ...))objc_msgSend_bool)(arg0, arg1, arg2); + rc = (jboolean)((BOOL (*)(jintLong, jintLong, jshort))objc_msgSend_bool)(arg0, arg1, arg2); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend_1bool__IIS_FUNC); #else @@ -10088,7 +10088,7 @@ JNIEXPORT jfloat JNICALL OS_NATIVE(objc_1msgSend_1floatret) { jfloat rc = 0; OS_NATIVE_ENTER(env, that, objc_1msgSend_1floatret_FUNC); - rc = (jfloat)((jfloat (*)(jintLong, jintLong, ...))objc_msgSend_floatret)(arg0, arg1); + rc = (jfloat)((jfloat (*)(jintLong, jintLong))objc_msgSend_floatret)(arg0, arg1); OS_NATIVE_EXIT(env, that, objc_1msgSend_1floatret_FUNC); return rc; } @@ -10107,7 +10107,7 @@ JNIEXPORT jdouble JNICALL OS_NATIVE(objc_1msgSend_1fpret__JJ)(JNIEnv *env, jclas #else OS_NATIVE_ENTER(env, that, objc_1msgSend_1fpret__JJ_FUNC); #endif - rc = (jdouble)((jdouble (*)(jintLong, jintLong, ...))objc_msgSend_fpret)(arg0, arg1); + rc = (jdouble)((jdouble (*)(jintLong, jintLong))objc_msgSend_fpret)(arg0, arg1); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend_1fpret__II_FUNC); #else @@ -10130,7 +10130,7 @@ JNIEXPORT jdouble JNICALL OS_NATIVE(objc_1msgSend_1fpret__JJJ)(JNIEnv *env, jcla #else OS_NATIVE_ENTER(env, that, objc_1msgSend_1fpret__JJJ_FUNC); #endif - rc = (jdouble)((jdouble (*)(jintLong, jintLong, ...))objc_msgSend_fpret)(arg0, arg1, arg2); + rc = (jdouble)((jdouble (*)(jintLong, jintLong, jintLong))objc_msgSend_fpret)(arg0, arg1, arg2); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend_1fpret__III_FUNC); #else @@ -10153,7 +10153,7 @@ JNIEXPORT jdouble JNICALL OS_NATIVE(objc_1msgSend_1fpret__JJJJ)(JNIEnv *env, jcl #else OS_NATIVE_ENTER(env, that, objc_1msgSend_1fpret__JJJJ_FUNC); #endif - rc = (jdouble)((jdouble (*)(jintLong, jintLong, ...))objc_msgSend_fpret)(arg0, arg1, arg2, arg3); + rc = (jdouble)((jdouble (*)(jintLong, jintLong, jintLong, jintLong))objc_msgSend_fpret)(arg0, arg1, arg2, arg3); #ifndef JNI64 OS_NATIVE_EXIT(env, that, objc_1msgSend_1fpret__IIII_FUNC); #else @@ -10178,11 +10178,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSAffineTransformStructFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSAffineTransformStruct *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2); + ((void (*)(NSAffineTransformStruct *, jintLong, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSAffineTransformStruct (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2); + *lparg0 = (*(NSAffineTransformStruct (*)(jintLong, jintLong))objc_msgSend_stret)(arg1, arg2); } else { - *lparg0 = (*(NSAffineTransformStruct (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2); + *lparg0 = (*(NSAffineTransformStruct (*)(jintLong, jintLong))objc_msgSend)(arg1, arg2); } fail: if (arg0 && lparg0) setNSAffineTransformStructFields(env, arg0, lparg0); @@ -10209,11 +10209,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSPointFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSPoint *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2); + ((void (*)(NSPoint *, jintLong, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSPoint (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2); + *lparg0 = (*(NSPoint (*)(jintLong, jintLong))objc_msgSend_stret)(arg1, arg2); } else { - *lparg0 = (*(NSPoint (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2); + *lparg0 = (*(NSPoint (*)(jintLong, jintLong))objc_msgSend)(arg1, arg2); } fail: if (arg0 && lparg0) setNSPointFields(env, arg0, lparg0); @@ -10240,11 +10240,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSPointFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSPoint *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, arg3); + ((void (*)(NSPoint *, jintLong, jintLong, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, arg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSPoint (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, arg3); + *lparg0 = (*(NSPoint (*)(jintLong, jintLong, jintLong))objc_msgSend_stret)(arg1, arg2, arg3); } else { - *lparg0 = (*(NSPoint (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, arg3); + *lparg0 = (*(NSPoint (*)(jintLong, jintLong, jintLong))objc_msgSend)(arg1, arg2, arg3); } fail: if (arg0 && lparg0) setNSPointFields(env, arg0, lparg0); @@ -10273,11 +10273,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSPointFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSPoint *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3); + ((void (*)(NSPoint *, jintLong, jintLong, NSPoint))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSPoint (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3); + *lparg0 = (*(NSPoint (*)(jintLong, jintLong, NSPoint))objc_msgSend_stret)(arg1, arg2, *lparg3); } else { - *lparg0 = (*(NSPoint (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3); + *lparg0 = (*(NSPoint (*)(jintLong, jintLong, NSPoint))objc_msgSend)(arg1, arg2, *lparg3); } fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); @@ -10307,11 +10307,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSPointFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSPointFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSPoint *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); + ((void (*)(NSPoint *, jintLong, jintLong, NSPoint, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSPoint (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSPoint (*)(jintLong, jintLong, NSPoint, jintLong))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); } else { - *lparg0 = (*(NSPoint (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSPoint (*)(jintLong, jintLong, NSPoint, jintLong))objc_msgSend)(arg1, arg2, *lparg3, arg4); } fail: if (arg3 && lparg3) setNSPointFields(env, arg3, lparg3); @@ -10339,11 +10339,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSRangeFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRange *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2); + ((void (*)(NSRange *, jintLong, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRange (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2); + *lparg0 = (*(NSRange (*)(jintLong, jintLong))objc_msgSend_stret)(arg1, arg2); } else { - *lparg0 = (*(NSRange (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2); + *lparg0 = (*(NSRange (*)(jintLong, jintLong))objc_msgSend)(arg1, arg2); } fail: if (arg0 && lparg0) setNSRangeFields(env, arg0, lparg0); @@ -10370,11 +10370,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSRangeFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRange *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, arg3); + ((void (*)(NSRange *, jintLong, jintLong, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, arg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRange (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, arg3); + *lparg0 = (*(NSRange (*)(jintLong, jintLong, jintLong))objc_msgSend_stret)(arg1, arg2, arg3); } else { - *lparg0 = (*(NSRange (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, arg3); + *lparg0 = (*(NSRange (*)(jintLong, jintLong, jintLong))objc_msgSend)(arg1, arg2, arg3); } fail: if (arg0 && lparg0) setNSRangeFields(env, arg0, lparg0); @@ -10403,11 +10403,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSRangeFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRangeFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRange *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); + ((void (*)(NSRange *, jintLong, jintLong, NSRange, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRange (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSRange (*)(jintLong, jintLong, NSRange, jintLong))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); } else { - *lparg0 = (*(NSRange (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSRange (*)(jintLong, jintLong, NSRange, jintLong))objc_msgSend)(arg1, arg2, *lparg3, arg4); } fail: if (arg3 && lparg3) setNSRangeFields(env, arg3, lparg3); @@ -10437,11 +10437,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSRangeFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRange *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3); + ((void (*)(NSRange *, jintLong, jintLong, NSRect))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRange (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3); + *lparg0 = (*(NSRange (*)(jintLong, jintLong, NSRect))objc_msgSend_stret)(arg1, arg2, *lparg3); } else { - *lparg0 = (*(NSRange (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3); + *lparg0 = (*(NSRange (*)(jintLong, jintLong, NSRect))objc_msgSend)(arg1, arg2, *lparg3); } fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); @@ -10469,11 +10469,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSRectFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2); + ((void (*)(NSRect *, jintLong, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2); + *lparg0 = (*(NSRect (*)(jintLong, jintLong))objc_msgSend_stret)(arg1, arg2); } else { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2); + *lparg0 = (*(NSRect (*)(jintLong, jintLong))objc_msgSend)(arg1, arg2); } fail: if (arg0 && lparg0) setNSRectFields(env, arg0, lparg0); @@ -10500,11 +10500,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSRectFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, arg3); + ((void (*)(NSRect *, jintLong, jintLong, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, arg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, arg3); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, jintLong))objc_msgSend_stret)(arg1, arg2, arg3); } else { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, arg3); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, jintLong))objc_msgSend)(arg1, arg2, arg3); } fail: if (arg0 && lparg0) setNSRectFields(env, arg0, lparg0); @@ -10531,11 +10531,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSRectFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, arg3, arg4); + ((void (*)(NSRect *, jintLong, jintLong, jintLong, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, arg3, arg4); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, arg3, arg4); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, jintLong, jintLong))objc_msgSend_stret)(arg1, arg2, arg3, arg4); } else { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, arg3, arg4); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, jintLong, jintLong))objc_msgSend)(arg1, arg2, arg3, arg4); } fail: if (arg0 && lparg0) setNSRectFields(env, arg0, lparg0); @@ -10562,11 +10562,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSRectFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, arg3, arg4, arg5); + ((void (*)(NSRect *, jintLong, jintLong, jintLong, jintLong, jboolean))objc_msgSend_stret)(lparg0, arg1, arg2, arg3, arg4, arg5); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, arg3, arg4, arg5); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, jintLong, jintLong, jboolean))objc_msgSend_stret)(arg1, arg2, arg3, arg4, arg5); } else { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, arg3, arg4, arg5); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, jintLong, jintLong, jboolean))objc_msgSend)(arg1, arg2, arg3, arg4, arg5); } fail: if (arg0 && lparg0) setNSRectFields(env, arg0, lparg0); @@ -10595,11 +10595,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSRectFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg4) if ((lparg4 = getNSRectFields(env, arg4, &_arg4)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, arg3, *lparg4, arg5); + ((void (*)(NSRect *, jintLong, jintLong, jintLong, NSRect, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, arg3, *lparg4, arg5); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, arg3, *lparg4, arg5); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, jintLong, NSRect, jintLong))objc_msgSend_stret)(arg1, arg2, arg3, *lparg4, arg5); } else { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, arg3, *lparg4, arg5); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, jintLong, NSRect, jintLong))objc_msgSend)(arg1, arg2, arg3, *lparg4, arg5); } fail: if (arg4 && lparg4) setNSRectFields(env, arg4, lparg4); @@ -10629,11 +10629,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSRectFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRangeFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); + ((void (*)(NSRect *, jintLong, jintLong, NSRange, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, NSRange, jintLong))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); } else { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, NSRange, jintLong))objc_msgSend)(arg1, arg2, *lparg3, arg4); } fail: if (arg3 && lparg3) setNSRangeFields(env, arg3, lparg3); @@ -10663,11 +10663,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSRectFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3); + ((void (*)(NSRect *, jintLong, jintLong, NSRect))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, NSRect))objc_msgSend_stret)(arg1, arg2, *lparg3); } else { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, NSRect))objc_msgSend)(arg1, arg2, *lparg3); } fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); @@ -10697,11 +10697,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSRectFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); + ((void (*)(NSRect *, jintLong, jintLong, NSRect, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, NSRect, jintLong))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); } else { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, NSRect, jintLong))objc_msgSend)(arg1, arg2, *lparg3, arg4); } fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); @@ -10731,11 +10731,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSRectFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSSizeFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSRect *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); + ((void (*)(NSRect *, jintLong, jintLong, NSSize, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, NSSize, jintLong))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); } else { - *lparg0 = (*(NSRect (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSRect (*)(jintLong, jintLong, NSSize, jintLong))objc_msgSend)(arg1, arg2, *lparg3, arg4); } fail: if (arg3 && lparg3) setNSSizeFields(env, arg3, lparg3); @@ -10763,11 +10763,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSSizeFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSSize *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2); + ((void (*)(NSSize *, jintLong, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2); + *lparg0 = (*(NSSize (*)(jintLong, jintLong))objc_msgSend_stret)(arg1, arg2); } else { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2); + *lparg0 = (*(NSSize (*)(jintLong, jintLong))objc_msgSend)(arg1, arg2); } fail: if (arg0 && lparg0) setNSSizeFields(env, arg0, lparg0); @@ -10796,11 +10796,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSSizeFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSRectFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSSize *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3); + ((void (*)(NSSize *, jintLong, jintLong, NSRect))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, NSRect))objc_msgSend_stret)(arg1, arg2, *lparg3); } else { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, NSRect))objc_msgSend)(arg1, arg2, *lparg3); } fail: if (arg3 && lparg3) setNSRectFields(env, arg3, lparg3); @@ -10830,11 +10830,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSSizeFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSSizeFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSSize *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3); + ((void (*)(NSSize *, jintLong, jintLong, NSSize))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, NSSize))objc_msgSend_stret)(arg1, arg2, *lparg3); } else { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, NSSize))objc_msgSend)(arg1, arg2, *lparg3); } fail: if (arg3 && lparg3) setNSSizeFields(env, arg3, lparg3); @@ -10864,11 +10864,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSSizeFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSSizeFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSSize *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); + ((void (*)(NSSize *, jintLong, jintLong, NSSize, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, NSSize, jintLong))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4); } else { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3, arg4); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, NSSize, jintLong))objc_msgSend)(arg1, arg2, *lparg3, arg4); } fail: if (arg3 && lparg3) setNSSizeFields(env, arg3, lparg3); @@ -10900,9 +10900,9 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (STRUCT_SIZE_LIMIT == 0) { ((void (*)(NSSize *, jintLong, jintLong, NSSize, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4, arg5, arg6, arg7, arg8); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4, arg5, arg6, arg7, arg8); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, NSSize, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4, arg5, arg6, arg7, arg8); } else { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3, arg4, arg5, arg6, arg7, arg8); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, NSSize, jintLong, jintLong, jintLong, jintLong, jintLong))objc_msgSend)(arg1, arg2, *lparg3, arg4, arg5, arg6, arg7, arg8); } fail: if (arg3 && lparg3) setNSSizeFields(env, arg3, lparg3); @@ -10932,11 +10932,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal if (arg0) if ((lparg0 = getNSSizeFields(env, arg0, &_arg0)) == NULL) goto fail; if (arg3) if ((lparg3 = getNSSizeFields(env, arg3, &_arg3)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSSize *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4, arg5, arg6); + ((void (*)(NSSize *, jintLong, jintLong, NSSize, jboolean, jboolean, jintLong))objc_msgSend_stret)(lparg0, arg1, arg2, *lparg3, arg4, arg5, arg6); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4, arg5, arg6); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, NSSize, jboolean, jboolean, jintLong))objc_msgSend_stret)(arg1, arg2, *lparg3, arg4, arg5, arg6); } else { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, *lparg3, arg4, arg5, arg6); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, NSSize, jboolean, jboolean, jintLong))objc_msgSend)(arg1, arg2, *lparg3, arg4, arg5, arg6); } fail: if (arg3 && lparg3) setNSSizeFields(env, arg3, lparg3); @@ -10964,11 +10964,11 @@ JNIEXPORT void JNICALL OS_NATIVE(objc_1msgSend_1stret__Lorg_eclipse_swt_internal #endif if (arg0) if ((lparg0 = getNSSizeFields(env, arg0, &_arg0)) == NULL) goto fail; if (STRUCT_SIZE_LIMIT == 0) { - ((void (*)(NSSize *, jintLong, ...))objc_msgSend_stret)(lparg0, arg1, arg2, arg3); + ((void (*)(NSSize *, jintLong, jintLong, jboolean))objc_msgSend_stret)(lparg0, arg1, arg2, arg3); } else if (sizeof(_arg0) > STRUCT_SIZE_LIMIT) { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend_stret)(arg1, arg2, arg3); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, jboolean))objc_msgSend_stret)(arg1, arg2, arg3); } else { - *lparg0 = (*(NSSize (*)(jintLong, jintLong, ...))objc_msgSend)(arg1, arg2, arg3); + *lparg0 = (*(NSSize (*)(jintLong, jintLong, jboolean))objc_msgSend)(arg1, arg2, arg3); } fail: if (arg0 && lparg0) setNSSizeFields(env, arg0, lparg0); diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java index 64865bd6b9..93cbd45fb4 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java +++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java @@ -3797,521 +3797,521 @@ public static final native long /*int*/ NSTemporaryDirectory(); /** Super Sends */ /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native boolean objc_msgSendSuper_bool(objc_super superId, long /*int*/ sel, NSRange arg0, long /*int*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native boolean objc_msgSendSuper_bool(objc_super superId, long /*int*/ sel, long /*int*/ arg0, NSPoint arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, NSPoint arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, NSRect arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, NSRect arg0, long /*int*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, NSSize arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, boolean arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, boolean arg0, NSRect arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, long /*int*/ arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, long /*int*/ arg0, NSPoint arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, long /*int*/ arg0, NSPoint arg1, long /*int*/ arg2); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, long /*int*/ arg0, NSRect arg1, long /*int*/ arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, long /*int*/ arg0, boolean arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, boolean arg3); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSendSuper(objc_super superId, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSendSuper_stret(NSRect result, objc_super superId, long /*int*/ sel, NSRect arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSendSuper_stret(NSRect result, objc_super superId, long /*int*/ sel, NSRect arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSendSuper_stret(NSRect result, objc_super superId, long /*int*/ sel, long /*int*/ arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native void objc_msgSendSuper_stret(NSRect result, objc_super superId, long /*int*/ sel, long /*int*/ arg0, NSRect arg1, long /*int*/ arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSendSuper_stret(NSSize result, objc_super superId, long /*int*/ sel); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSendSuper_stret(NSSize result, objc_super superId, long /*int*/ sel, NSRect arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSendSuper_stret(NSSize result, objc_super superId, long /*int*/ sel, boolean arg0); /** Sends */ -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, NSPoint arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct * @param arg1 flags=struct */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, NSPoint arg0, NSRect arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, NSRange arg0, long /*int*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, NSRect arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, NSPoint arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, NSSize arg1, boolean arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3, long /*int*/ arg4); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native boolean objc_msgSend_bool(long /*int*/ id, long /*int*/ sel, short arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native double objc_msgSend_fpret(long /*int*/ id, long /*int*/ sel); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native double objc_msgSend_fpret(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native double objc_msgSend_fpret(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native float objc_msgSend_floatret(long /*int*/ id, long /*int*/ sel); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSAffineTransformStruct arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSPoint arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct * @param arg1 flags=struct * @param arg2 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSPoint arg0, NSPoint arg1, NSPoint arg2); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSPoint arg0, NSPoint arg1, long /*int*/ arg2); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSPoint arg0, NSRect arg1, long /*int*/ arg2, double /*float*/ arg3); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSPoint arg0, double /*float*/ arg1, double /*float*/ arg2, double /*float*/ arg3); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSPoint arg0, double /*float*/ arg1, double /*float*/ arg2, double /*float*/ arg3, boolean arg4); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSPoint arg0, long /*int*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSPoint arg0, long /*int*/ arg1, double[] /*float[]*/ arg2); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRange arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRange arg0, NSPoint arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRange arg0, NSRange arg1, long /*int*/ arg2, long[] /*int[]*/ arg3); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRange arg0, long /*int*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRange arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3, long /*int*/ arg4, byte[] arg5); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, NSPoint arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct * @param arg1 flags=struct * @param arg2 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, NSRange arg1, NSRect arg2); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, NSRect arg1, long /*int*/ arg2, double /*float*/ arg3); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, NSSize arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, boolean arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, boolean arg1, boolean arg2); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, double /*float*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, double /*float*/ arg1, double /*float*/ arg2); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, long /*int*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, long /*int*/ arg1, boolean arg2, long /*int*/ arg3); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, long /*int*/ arg1, long /*int*/ arg2); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, long /*int*/ arg1, long /*int*/ arg2, boolean arg3); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, long /*int*/ arg1, long /*int*/ arg2, boolean arg3, long /*int*/ arg4); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSRect arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, NSSize arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, boolean arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, boolean arg0, NSRect arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, boolean arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, byte[] arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, byte[] arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, char[] arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, char[] arg0, NSRange arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, char[] arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, double arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, double arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3, boolean arg4); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, double /*float*/ arg0, double /*float*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, double /*float*/ arg0, double /*float*/ arg1, double /*float*/ arg2, double /*float*/ arg3); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, double /*float*/ arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, double[] /*float[]*/ arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, double[] /*float[]*/ arg0, long /*int*/ arg1, double /*float*/ arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, NSPoint arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct * @param arg2 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, NSPoint arg1, NSSize arg2, long /*int*/ arg3, long /*int*/ arg4, long /*int*/ arg5, boolean arg6); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, NSPoint arg1, long /*int*/ arg2); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, NSPoint arg1, long /*int*/ arg2, double arg3, long /*int*/ arg4, long /*int*/ arg5, long /*int*/ arg6, long /*int*/ arg7, long /*int*/ arg8); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, NSPoint arg1, long /*int*/ arg2, double arg3, long /*int*/ arg4, long /*int*/ arg5, short arg6, long /*int*/ arg7, long /*int*/ arg8); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, NSRange arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, NSRect arg1, long /*int*/ arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, boolean arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, double /*float*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg2 flags=struct */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, NSRange arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, boolean arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, double arg2, long /*int*/ arg3); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, boolean arg3); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, double /*float*/ arg3); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3, long /*int*/ arg4); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3, long /*int*/ arg4, boolean arg5, boolean arg6, long /*int*/ arg7, long /*int*/ arg8, long /*int*/ arg9); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3, long /*int*/ arg4, boolean arg5, boolean arg6, long /*int*/ arg7, long /*int*/ arg8, long /*int*/ arg9, long /*int*/ arg10); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3, long /*int*/ arg4, long /*int*/ arg5); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, long /*int*/ arg2, long /*int*/ arg3, long /*int*/ arg4, long /*int*/ arg5, long /*int*/ arg6); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long[] /*int[]*/ arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, long[] /*int[]*/ arg0, int arg1, int arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long /*int*/ objc_msgSend(long /*int*/ id, long /*int*/ sel, int[] arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native int objc_msgSend(int id, int sel, float arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long objc_msgSend(long id, long sel, int arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long objc_msgSend(long id, long sel, int[] arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native long objc_msgSend(long id, long sel, long[] arg0, long arg1, long arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSAffineTransformStruct result, long /*int*/ id, long /*int*/ sel); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSPoint result, long /*int*/ id, long /*int*/ sel); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSPoint result, long /*int*/ id, long /*int*/ sel, NSPoint arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSPoint result, long /*int*/ id, long /*int*/ sel, NSPoint arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSPoint result, long /*int*/ id, long /*int*/ sel, long /*int*/ arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSRange result, long /*int*/ id, long /*int*/ sel); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSRange result, long /*int*/ id, long /*int*/ sel, NSRange arg0, long /*int*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSRange result, long /*int*/ id, long /*int*/ sel, NSRect arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSRange result, long /*int*/ id, long /*int*/ sel, long /*int*/ arg0); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSRect result, long /*int*/ id, long /*int*/ sel); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSRect result, long /*int*/ id, long /*int*/ sel, NSRange arg0, long /*int*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSRect result, long /*int*/ id, long /*int*/ sel, NSRect arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSRect result, long /*int*/ id, long /*int*/ sel, NSRect arg0, long /*int*/ arg1); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSRect result, long /*int*/ id, long /*int*/ sel, NSSize arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSRect result, long /*int*/ id, long /*int*/ sel, long /*int*/ arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg1 flags=struct */ public static final native void objc_msgSend_stret(NSRect result, long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, NSRect arg1, long /*int*/ arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSRect result, long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSRect result, long /*int*/ id, long /*int*/ sel, long /*int*/ arg0, long /*int*/ arg1, boolean arg2); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSSize result, long /*int*/ id, long /*int*/ sel); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSSize result, long /*int*/ id, long /*int*/ sel, NSRect arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSSize result, long /*int*/ id, long /*int*/ sel, NSSize arg0); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSSize result, long /*int*/ id, long /*int*/ sel, NSSize arg0, boolean arg1, boolean arg2, long /*int*/ arg3); /** - * @method flags=cast,fixedargs=2 + * @method flags=cast * @param arg0 flags=struct */ public static final native void objc_msgSend_stret(NSSize result, long /*int*/ id, long /*int*/ sel, NSSize arg0, long /*int*/ arg1); -/** @method flags=cast,fixedargs=2 */ +/** @method flags=cast */ public static final native void objc_msgSend_stret(NSSize result, long /*int*/ id, long /*int*/ sel, boolean arg0); /** Sizeof natives */ -- cgit v1.2.3