Re: [fpc-pascal] TSR Programs

2005-03-09 Thread Thomas Schatzl
Hello, Pianoman schrieb: Hello, how can I create resident programs for WIN32 in FPC? Any help or docs would be appreciated. Pianoman There are no special "resident" programs anymore, simply create a normal GUI app with an invisible window or a service. See below for more info: E.g. Use {$APPTYPE

[fpc-pascal] TSR Programs

2005-03-09 Thread Pianoman
Hello, how can I create resident programs for WIN32 in FPC? Any help or docs would be appreciated. Pianoman - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Wednesday, March 09, 2005 12:00 PM Subject: fpc-pascal Digest, Vol 7, Issue 11 > Send fpc-pascal mailing list submissions t

Re: [fpc-pascal] intel asm and fpc-1.9.8

2005-03-09 Thread Jonas Maebe
On 9 mrt 2005, at 17:13, Jan Je/lowicki wrote: Today I tried new fpc 1.9.8. Output generated from fpc 1.9.8 code seems errorenous. The isolated example given below tries to fill an array of float with contstant value. Gdb (5.3) gives no reasonable support, although for 1.0.10 code it does. The defa

[fpc-pascal] intel asm and fpc-1.9.8

2005-03-09 Thread Jan Je/lowicki
Hello, I have dozens of blas-like assembler procedures. They have been written about 10 years ago and I still use them in both virtualpascal and free pascal programs. Today I tried new fpc 1.9.8. Output generated from fpc 1.9.8 code seems errorenous. The isolated example given below tries to f

Re: [fpc-pascal] fpc198 and old bugs

2005-03-09 Thread Bartek
- Original Message - From: "Peter Vreman" <[EMAIL PROTECTED]> To: "FPC-Pascal users discussions" Sent: Tuesday, March 08, 2005 10:12 PM Subject: Re: [fpc-pascal] fpc198 and old bugs > >//- - > >program bug; > >uses

[fpc-pascal] Re: Help needed with interfacing to C-object-files.

2005-03-09 Thread Jeff Pohlmeyer
> Let me explain more : the header file is used in at least > five source-files, so compiling gives (at least) five .o > files, but none with the name of the header-file. >From the command line : ar -r libDallas.a file1.o file2.o ... and then, in your program: {$LINKLIB Dallas} - Jef