Re: [fpc-pascal] Re: FPC programs in Android without JNI

2010-12-18 Thread Felipe Monteiro de Carvalho
ahahah, I was writing an answer in my phone, but then gave up. Probably hit the send button by accident. Anyway, yes, I had also seen that one and it is a step in the right direction =) I haven't yet fully understood how this new APIs work, hopefully they are C APIs, if they are C++ APIs then it

Re: [fpc-pascal] Having trouble defining an initialized constant correctly

2010-12-18 Thread Sven Barth
On 17.12.2010 23:33, Cox, Stuart TRAN:EX wrote: Please excuse me if I’ve posted this request to the wrong list. I really did spend some time in trying to find a FPC list for simple coding questions. Sorry. Yes, I'd say you've found the correct list ^^ I have a set of record types defined

Re: [fpc-pascal] Re: FPC programs in Android without JNI

2010-12-18 Thread Max Vlasov
On Sat, Dec 18, 2010 at 1:13 PM, Felipe Monteiro de Carvalho felipemonteiro.carva...@gmail.com wrote: ... Of course I ignored this and managed to run native programs, but that's another story. Felipe, great to hear, and probably since Android is OSS, your method modified or not will work

Re: [fpc-pascal] generics class hierarchy

2010-12-18 Thread David Emerson
Would you please state your FPC version the next time? (If you have stated I, but I haven't seen it: I'm sorry) Some problems might be fixed in the development version while they aren't in the latest release. I tried with both 2.4.2 and 2.5.1 (fetched via svn and compiled. Took me quite

Re: [fpc-pascal] generics class hierarchy

2010-12-18 Thread Sven Barth
On 18.12.2010 22:22, David Emerson wrote: Would you please state your FPC version the next time? (If you have stated I, but I haven't seen it: I'm sorry) Some problems might be fixed in the development version while they aren't in the latest release. I tried with both 2.4.2 and 2.5.1 (fetched

[fpc-pascal] CDDB unit

2010-12-18 Thread Andrew Haines
Hi, Does anyone have the cddb unit that was on the wiki once upon a time? http://wiki.lazarus.freepascal.org/CDDB The link on that page is now dead. Thanks, Andrew ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Re: [fpc-pascal] generics class hierarchy

2010-12-18 Thread David Emerson
Sven Barth wrote: I've now looked at your example code in more detail (I was working the last time I wrote you). Where did you define _t_point? I only found a t_point in your second mail. _t_point is part of the template list. I guess it's a limitation. Conceptually it doesn't seem that

Re: [fpc-pascal] generics class hierarchy

2010-12-18 Thread Honza
2010/12/19 David Emerson dle...@angelbase.com: type  generic gt_box_t_point,_num = class (_t_point)   // FAILS :-( f_width, f_height : _num; end; I think it should fail according to the docs, see: http://www.freepascal.org/docs-html/ref/refse42.html There is a single placeholder _T. It