[fpc-pascal] connecting with Delphi (object files,dll etc)

2006-03-31 Thread Пётр Косаревский
I have a question concerning connecting FreePascal function with Delphi application (under win32). I hope I'm totally wrong in my approach and so hope for some help. 1. DLL files created by FPC 2.0.2 are not usable under Delphi forms (there are about 5 posted unfixed bugs about it by different

Re: [fpc-pascal] connecting with Delphi (object files,dll etc)

2006-03-31 Thread Michael Van Canneyt
On Fri, 31 Mar 2006, ??? wrote: 4. Pipes are nice when you redirect stdout of some utility to file, but are pretty unclearly documented (yes, I do grow my hands from behind and can't get them to work stable for Delphi-FPC pair with bidirectional information flow). 5. The last

Re: [fpc-pascal] connecting with Delphi (object files,dll etc)

2006-03-31 Thread Peter Vreman
I have a question concerning connecting FreePascal function with Delphi application (under win32). I hope I'm totally wrong in my approach and so hope for some help. 1. DLL files created by FPC 2.0.2 are not usable under Delphi forms (there are about 5 posted unfixed bugs about it by

Re: [fpc-pascal] connecting with Delphi (object files,dll etc)

2006-03-31 Thread Marco van de Voort
3. Connecting object file is difficult: FPC doesn't support OMF (object files), and in FPC 2.0.2 support for COFF (object files) seems to be dropped. FPC produces PECOFF (object files). Sometimes you can translate COFF to OMF by (free?) Borland utility COFF2OMF, but it's not well

Re: [fpc-pascal] connecting with Delphi (object files,dll etc)

2006-03-31 Thread Florian Klaempfl
Пётр Косаревский wrote: 3. Connecting object file is difficult: FPC doesn't support OMF (object files), and in FPC 2.0.2 support for COFF (object files) seems to be dropped. FPC produces PECOFF (object files). FPC supports OMF by using NASM/MASM/TASM as assembler (e.g. -Amasm).

Re[2]: [fpc-pascal] connecting with Delphi (object files, dll etc), assemblers and FPC

2006-03-31 Thread Пётр Косаревский
Florian Klaempfl wrote: Пётр Косаревский wrote: 3. Connecting object file is difficult: FPC doesn't support OMF (object files), and in FPC 2.0.2 support for COFF (object files) seems to be dropped. FPC produces PECOFF (object files). FPC supports OMF by using NASM/MASM/TASM as assembler