Re: [fpc-pascal] Integer = Extended?

2007-05-17 Thread Daniël Mantione
Op Thu, 17 May 2007, schreef Wolfram Kläger: What?s wrong with the following declarations: function Any(A1 : Extended; A2 : Extended) : AnyType; overload; function Any(A1 : Integer; A2 : Integer) : AnyType; overload; FPC 2.04 on Win32 says, both functions have same parameter list.

[fpc-pascal] writing programs for non Intel Processors

2007-05-17 Thread Pianoman
Hello, I would like to ask whether is it possible to use freepascal to write application for example for Motorola MPX220 (mobile phone) ( it runs windows 2003 mobile edition) Pianoman ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Re: [fpc-pascal] writing programs for non Intel Processors

2007-05-17 Thread Daniël Mantione
Op Wed, 16 May 2007, schreef Pianoman: Hello, I would like to ask whether is it possible to use freepascal to write application for example for Motorola MPX220 (mobile phone) ( it runs windows 2003 mobile edition) There is a good chance you can. Please try the Windows CE port and see

Re: [fpc-pascal] writing programs for non Intel Processors

2007-05-17 Thread Felipe Monteiro de Carvalho
On 5/17/07, Daniël Mantione [EMAIL PROTECTED] wrote: There is a good chance you can. Please try the Windows CE port and see if the programs work on your phone. Link to the wince port tutorial: http://wiki.freepascal.org/WinCE_port -- Felipe Monteiro de Carvalho

Re: [fpc-pascal] writing programs for non Intel Processors

2007-05-17 Thread Christian Ulrich
Yes, you can i have an mpx220 and have tryed this already. Only the LCL is not completely useable couse some canvas routines Crash on Wince 5.0 regards Christian Pianoman schrieb: Hello, I would like to ask whether is it possible to use freepascal to write application for example for

[fpc-pascal] writing programs for non Intel Processors

2007-05-17 Thread Krekan
Hello, I would like to ask whether is it possible to use freepascal to write application for example for Motorola MPX220 (mobile phone) ( it runs windows 2003 mobile edition) Pianoman ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

[fpc-pascal] writing programs for non intel processors

2007-05-17 Thread Krekan
Hello, I would like to ask whether is it possible to use freepascal to write application for example for Motorola MPX220 (mobile phone) ( it runs windows 2003 mobile edition) Pianoman ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

[fpc-pascal] writing programs for non intel processors

2007-05-17 Thread Pianoman
Hello, I would like to ask whether is it possible to use freepascal to write application for example for Motorola MPX220 (mobile phone) ( it runs windows 2003 mobile edition) Pianoman ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

[fpc-pascal] writing programs for non intel processors

2007-05-17 Thread Pianoman
Hello, I would like to ask whether is it possible to use freepascal to write application for example for Motorola MPX220 (mobile phone) ( it runs windows 2003 mobile edition) Pianoman ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Re: [fpc-pascal] Steps to achieve i386-wince

2007-05-17 Thread Felipe Monteiro de Carvalho
If the hardware manufacturer says there is no GNU Binutils available, then ask for generic Binutils. Free Pascal should be able to work correctly with Microsoft Assembler and Microsoft Linker (or whatever is available for your hardware). Possibly by just creating a batch script to build the

Re: [fpc-pascal] Integer = Extended?

2007-05-17 Thread Wolfram Kläger
-Ursprüngliche Nachricht- Von: FPC-Pascal users discussions fpc-pascal@lists.freepascal.org Gesendet: 17.05.07 08:21:54 An: FPC-Pascal users discussions fpc-pascal@lists.freepascal.org Betreff: Re: [fpc-pascal] Integer = Extended? Op Thu, 17 May 2007, schreef Wolfram Kläger:

Re: [fpc-pascal] Integer = Extended?

2007-05-17 Thread Marco van de Voort
Finally I agree in general, regarding good practice. But my application is about image processing. The overloaded methods are for resizing images. The extended version accepts relative input, say in percent, the integer version expects absolute pixel size. I thought it?s a good idea, to call

[fpc-pascal] FTP client unit recommendations

2007-05-17 Thread Wolfram Kläger
WhatŽs the best FTP client to be integrated in a FP console project, without need to hook up Lazarus? Nothing fancy, but as robust as possible. Any recommendations? Did anybody give CurlPas a serious try? http://curl.haxx.se/libcurl/pascal/ Looks like my favorite, so far. Thanks in advance for

Re: [fpc-pascal] Integer = Extended?

2007-05-17 Thread ik
On 5/17/07, Wolfram Kläger [EMAIL PROTECTED] wrote: -Ursprüngliche Nachricht- Von: FPC-Pascal users discussions fpc-pascal@lists.freepascal.org Gesendet: 17.05.07 08:21:54 An: FPC-Pascal users discussions fpc-pascal@lists.freepascal.org Betreff: Re: [fpc-pascal] Integer = Extended?

Re: [fpc-pascal] FTP client unit recommendations

2007-05-17 Thread Michael Van Canneyt
On Thu, 17 May 2007, Wolfram Kläger wrote: WhatŽs the best FTP client to be integrated in a FP console project, without need to hook up Lazarus? Nothing fancy, but as robust as possible. Any recommendations? Did anybody give CurlPas a serious try? Yes.

[fpc-pascal] FPC version defines

2007-05-17 Thread Felipe Monteiro de Carvalho
Hello, What are the FPC defines for it's versions? I would like to separate some code from FPC 2.0.4 and FPC 2.2 (actually development 2.1) due to some bugs in 2.0.4 that were corrected on 2.1 thanks, -- Felipe Monteiro de Carvalho ___ fpc-pascal

Re: [fpc-pascal] FPC version defines

2007-05-17 Thread Marco van de Voort
What are the FPC defines for it's versions? I would like to separate some code from FPC 2.0.4 and FPC 2.2 (actually development 2.1) due to some bugs in 2.0.4 that were corrected on 2.1 http://delphi.wikia.com/wiki/FreePascal_detection_and_versioning

Re: [fpc-pascal] FPC version defines

2007-05-17 Thread Peter Vreman
At 22:53 17-5-2007, you wrote: Hello, What are the FPC defines for it's versions? I would like to separate some code from FPC 2.0.4 and FPC 2.2 (actually development 2.1) due to some bugs in 2.0.4 that were corrected on 2.1 {$ifdef VER2_0} 2.0.x code {$else} 2.1+ code {$endif} Peter

Re: [fpc-pascal] FPC version defines

2007-05-17 Thread Felipe Monteiro de Carvalho
thanks -- Felipe Monteiro de Carvalho ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal