[fpc-pascal]Unit Linux under Win32?

2004-06-02 Thread Ivan Stamenkovic
Hello, I have tried to compile an example from 'Free Pascal supplied units: Ref. Guide', Chapter 18 - The Sockets Unit, Program Client, but failed to compile. This example uses Linux unit, but both a command line compiler and IDE do not compile that unit. I have tried to Build from IDE, ppc386 -B,

[fpc-pascal]Newbie to FPC: Can't compile

2004-06-05 Thread Ivan Stamenkovic
Hello, The following code I can't compile. FPC reports there's no unit Linux. I use FPC 1.0.4 (both IDE and command line compiler), win32 version. The code is from 'Reference Guide', Chapter 18. Is it actually possible at all? TIA, Ivan Program Client; { Program to test Sockets unit by Micha

Re[2]: [fpc-pascal] Cooperative Mult Tasker under DOS with FP

2004-06-30 Thread Ivan Stamenkovic
Hello Jérémie_LEFRANCOIS, Wednesday, June 30, 2004, 2:05:51 PM, you wrote: J> Where would I download a free OS/2 (possible ?) and a free LINUX both "stripped J> down" as you say ? Or they have to be installed and the GUI never started I J> suppose... J> I found "TINYLINUX" somewhere , yet what do

[fpc-pascal]Socket programming with FPC

2004-07-24 Thread Ivan Stamenkovic
Hello, Is it possible to do socket programming under win32 with FPC 1.0.10 or 1.9.4? Which unit should I check out? If possible under win32, what about DOS? Thanks! ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/l

Re: [fpc-pascal]Socket programming with FPC

2004-07-24 Thread Ivan Stamenkovic
Hello Marco, Saturday, July 24, 2004, 5:50:40 PM, you wrote: >> Is it possible to do socket programming under win32 with FPC 1.0.10 or >> 1.9.4? MvdV> Yes both. MvdV> For 1.9.4 complete suites (ICS, see www.overbyte.be) are available, see MvdV> in CVS projects/contrib/ics and deeper. >> Which

[fpc-pascal]Var parameter passing to asm procedure

2004-08-05 Thread Ivan Stamenkovic
Hi, I have a problem when trying to pass some variable parameters to a procedure writen using integrated assembler. I have reduced the problem to the following code: program IncrementDemo; {$R+} {$asmmode intel} var a: dword; procedure increment(var x: dword); assembler; asm push ds