<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On 17 Jan 2012, at 16:19, Felipe Monteiro de Carvalho wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Monaco; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><span class="Apple-style-span" style="font-family: monospace; ">I need to convert this:<br><br>[felipe@localhost android]$ gedit<br>~/Programas/android-ndk-r5/platforms/android-8/arch-arm/usr/include/jni.h<br><br>void (*CallStaticVoidMethodV)(JNIEnv*, jclass, jmethodID, va_list);<br><br>To Pascal. I tryed using array of const, but it keeps crashing in this call =(<br></span></span></blockquote></div><br><div>"array of const" or "varargs" only matches "..." in C. va_list is an ABI-defined, and often at least partially handled via compiler magic, record type. Look for the copy of varargs.h for the gcc version you use on Android.</div><div><br></div><div><br></div><div>Jonas</div></body></html>