Re: [fpc-pascal] ReAllocMem problem (?)

2005-01-18 Thread Marcel Martin
Marcel Martin a écrit : > > Hello, > > The following function SysReAllocMem comes from the file > /rtl/inc/heap.inc (FPC 1.9.7 / Win32) > > function SysReAllocMem(var p: pointer; size: ptrint):pointer; > [...] >{ Resize block } >if not SysTryResizeMem(p,size) then >begin > minsi

[fpc-pascal] How about a link to lazarus on the freepascal.org front page?

2005-01-18 Thread Nikolay Nikolov
How about a link to lazarus on the freepascal.org front page? Seems like there are people who know about fpc, but not lazarus. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Pascal, Dos, Cross compiling, Etc

2005-01-18 Thread Tomas Hajny
On Tue, 18 Jan 2005 18:03:57 +0100, Florian Klaempfl wrote > [EMAIL PROTECTED] wrote: > > > Hi, > > > > I just downloaded Free Pascal 1.9.6 for Win32. (fpc-1.9.6.i386-win32.zip) > > > > Unzipped it, Installed it and added the thing to the end of the path etc. > > > > I would like to compile a

Re: [fpc-pascal] Running a background process

2005-01-18 Thread Peter Vreman
> Hi, > > As I mentioned in my previous post I would like to develop a text based > application... possibly with a text based gui. > > I have one little problem. > > I would like the program to do stuff while it waits for user input. Let's > call "do stuff" the "background process". > > In a window

Re: [fpc-pascal] Delphi To Free Pascal

2005-01-18 Thread Peter Vreman
> > - Original Message - > From: "Marco van de Voort" <[EMAIL PROTECTED]> > To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>; "FPC-Pascal users discussions" > > Sent: Wednesday, January 12, 2005 2:13 PM > Subject: Re: [fpc-pascal] Delphi To Free Pascal > > >> > This my test to see if free pasca

Re: [fpc-pascal] Text GUI and Graphic GUI's, CLX etc.

2005-01-18 Thread Peter Vreman
> Hi, > > Borland/Delphi has a "technology" called CLX... it's ment for cross > platform > development. > > Another project called DWPL uses this CLX for Text Gui's and Graphical > Gui's. > > It's pretty impressive. > > One can use Delphi to design a graphical gui etc... and then thx to this > DWPL

Re: [fpc-pascal] No Project File ?

2005-01-18 Thread Peter Vreman
> I also miss a project file in free pascal. > > Many of my delphi programs whatever use all kinds of units. > > I can't simply start adding all these to the unit directory or whatever in > free pascal's environment ? > > So how does that work ? > > Maybe I have to start creating fp.ini's for all m

Re: [fpc-pascal] Free Pascal, Dos, Cross compiling, Etc

2005-01-18 Thread Florian Klaempfl
[EMAIL PROTECTED] wrote: Hi, I just downloaded Free Pascal 1.9.6 for Win32. (fpc-1.9.6.i386-win32.zip) Unzipped it, Installed it and added the thing to the end of the path etc. I would like to compile a simple Hello World program to all targets. Apperently I can only compile/link/build to the win3

[fpc-pascal] Re: No Project File ?

2005-01-18 Thread [EMAIL PROTECTED]
Yes I think this will work thx to Options->Save As and Option->Open menu ;) - Original Message - From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: "free pascal mailing list" Sent: Sunday, January 16, 2005 1:08 PM Subject: No Project File ? > I also miss a project file in free pascal.

Re: [fpc-pascal] Cross-compilation to Linux from win32

2005-01-18 Thread [EMAIL PROTECTED]
- Original Message - From: "Simon Kissel" <[EMAIL PROTECTED]> To: Sent: Friday, January 14, 2005 7:55 PM Subject: [fpc-pascal] Cross-compilation to Linux from win32 > Hi, > > after quite some time I thought to give FPC another try to see if it's > a suitable replacement for Kylix. > > M

[fpc-pascal] Re: No Project File ?

2005-01-18 Thread [EMAIL PROTECTED]
Ups, Spoke to soon. It seems the unit directory entries are not stored in fp.ini ? Oh well I give and go play a game ;) Question: How can I tell free pascal to find some units somewhere without having to make it part of the environment ? Bye, Skybuck. - Original Message - From: "[E

Re: [fpc-pascal] Delphi To Free Pascal

2005-01-18 Thread [EMAIL PROTECTED]
- Original Message - From: "Marco van de Voort" <[EMAIL PROTECTED]> To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>; "FPC-Pascal users discussions" Sent: Wednesday, January 12, 2005 2:13 PM Subject: Re: [fpc-pascal] Delphi To Free Pascal > > This my test to see if free pascal can be used t

[fpc-pascal] Free Pascal, Dos, Cross compiling, Etc

2005-01-18 Thread [EMAIL PROTECTED]
Hi, I just downloaded Free Pascal 1.9.6 for Win32. (fpc-1.9.6.i386-win32.zip) Unzipped it, Installed it and added the thing to the end of the path etc. I would like to compile a simple Hello World program to all targets. Apperently I can only compile/link/build to the win32 target :( ! I woul

[fpc-pascal] Re: uses in ''; not supported ?

2005-01-18 Thread [EMAIL PROTECTED]
Ok this seems to work only in the program section of delphi program and not in other units etc. - Original Message - From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: "free pascal mailing list" Sent: Sunday, January 16, 2005 1:00 PM Subject: uses in ''; not supported ? > Hi, > > Some

[fpc-pascal] Running a background process

2005-01-18 Thread [EMAIL PROTECTED]
Hi, As I mentioned in my previous post I would like to develop a text based application... possibly with a text based gui. I have one little problem. I would like the program to do stuff while it waits for user input. Let's call "do stuff" the "background process". In a windows console program

Re: [fpc-pascal] Cross-compilation to Linux from win32

2005-01-18 Thread [EMAIL PROTECTED]
Hi, Little typo corrected :P > 7. Check if it's cygwin's make. If it's the wrong version than alter cygwin.bat and change the path so that only windows folders and this path is in it: c:\cygwin\bin than should be then ;) 7. Check if it's cygwin's make. If it's the wrong version then alter cygwi

[fpc-pascal] uses in ''; not supported ?

2005-01-18 Thread [EMAIL PROTECTED]
Hi, Some of my delphi uses clauses look like this: program FolderTest; uses unittest in '..\unittest.pas'; begin writeln('Hello World'); readln; end. Free Pascal Win32 Dos Ide reports: Fatal: Can't find unit unittest Bye, Skybuck. ___ fpc-

Re: [fpc-pascal] Cross-compilation to Linux from win32

2005-01-18 Thread [EMAIL PROTECTED]
I have changed this line: > This configure program will make a new make file so that the binutils can be > compiled for linux To this: This configure program will make a new make file so that the binutils can be compiled/linked for the host which is windows and use cygwin1.dll to work but so tha

[fpc-pascal] No Project File ?

2005-01-18 Thread [EMAIL PROTECTED]
I also miss a project file in free pascal. Many of my delphi programs whatever use all kinds of units. I can't simply start adding all these to the unit directory or whatever in free pascal's environment ? So how does that work ? Maybe I have to start creating fp.ini's for all my different proj

[fpc-pascal] Text GUI and Graphic GUI's, CLX etc.

2005-01-18 Thread [EMAIL PROTECTED]
Hi, Borland/Delphi has a "technology" called CLX... it's ment for cross platform development. Another project called DWPL uses this CLX for Text Gui's and Graphical Gui's. It's pretty impressive. One can use Delphi to design a graphical gui etc... and then thx to this DWPL/CLX magic it can also