Re: [fpc-pascal] How to get path to current theme icons on linux?

2012-01-18 Thread Krzysztof
Another problem. I know path to current icons, but icons are named like "office-spreadsheet" not by extension and can be in svg format :/ . So it seems that I must include icons of popular extensions in my application and do it by my self anyway. 2012/1/11 Krzysztof : > This is exactly what I need

Re: [fpc-pascal] Converting header with va_list

2012-01-18 Thread Felipe Monteiro de Carvalho
Hello, Thanks, it is good to have some input as to what would be necessary, but in the mean time I solved my problem in another way. JNI has another way of sending the parameters, the A functions: CallStaticVoidMethodA:procedure(Env:PJNIEnv;AClass:JClass;MethodID:JMethodID;Args:PJValue); And thi

Re: [fpc-pascal] Converting header with va_list

2012-01-18 Thread Jonas Maebe
On 17 Jan 2012, at 16:19, Felipe Monteiro de Carvalho wrote: I need to convert this: [felipe@localhost android]$ gedit ~/Programas/android-ndk-r5/platforms/android-8/arch-arm/usr/include/ jni.h void(*CallStaticVoidMethodV)(JNIEnv*, jclass, jmethodID, va_list); To Pascal. I tryed

Re: [fpc-pascal] Converting header with va_list

2012-01-18 Thread Jeppe Græsdal Johansen
Den 17-01-2012 16:19, Felipe Monteiro de Carvalho skrev: Hello, I need to convert this: [felipe@localhost android]$ gedit ~/Programas/android-ndk-r5/platforms/android-8/arch-arm/usr/include/jni.h void(*CallStaticVoidMethodV)(JNIEnv*, jclass, jmethodID, va_list); To Pascal. I tryed usi

[fpc-pascal] Converting header with va_list

2012-01-18 Thread Felipe Monteiro de Carvalho
Hello, I need to convert this: [felipe@localhost android]$ gedit ~/Programas/android-ndk-r5/platforms/android-8/arch-arm/usr/include/jni.h void(*CallStaticVoidMethodV)(JNIEnv*, jclass, jmethodID, va_list); To Pascal. I tryed using array of const, but it keeps crashing in this call =(

Re: [fpc-pascal] Re: Help!!

2012-01-18 Thread Andreas Schneider
Title: Re: [fpc-pascal] Re: Help!! On Tuesday, January 17, 2012, at 16:24 Mattias Gaertner wrote: Andreas Schneider hat am 17. Januar 2012 um 16:08 geschrieben:   >  > My current use case is:  > - show a login form  > - when login succeeds, show a progress form (connection  initialization)