Re: [fpc-pascal] About FPC calling register like Delphi

2007-01-23 Thread Alexandre Leclerc
2007/1/23, Florian Klaempfl <[EMAIL PROTECTED]>: Daniël Mantione schrieb: > > Op Tue, 23 Jan 2007, schreef Alexandre Leclerc: > >> Hi all, >> >> I saw some time ago in a roadmap for the next version (1.2?) - that I >> can't find anymore - a point about being compatible with Dephi calling >> regis

Re: [fpc-pascal] Becoming crazy with dll

2007-01-23 Thread Michel Meunier
The error message with loadlibrary is: external: SIGSEGV thanks -- Michel Meunier Web: www.etoiles-a-bleau.fr ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Inline and defines

2007-01-23 Thread Jason P Sage
Hello Alexander, If the "documented" compiler directive variable isn't working, I would just make my own so I only had to change one of code: {$DEFINE USEINLINE} {$INFO = } {$IFDEF USEINLINE} {$INFO COMPILING WITH INLINE } {$ELSE} {$INFO COMPILING WITHOUT INLINE } {$ENDIF}

Re: [fpc-pascal] About FPC calling register like Delphi

2007-01-23 Thread Florian Klaempfl
Daniël Mantione schrieb: Op Tue, 23 Jan 2007, schreef Alexandre Leclerc: Hi all, I saw some time ago in a roadmap for the next version (1.2?) - that I can't find anymore - a point about being compatible with Dephi calling register... And I was wondering if anything has changed in FPC regardin

Re: [fpc-pascal] About FPC calling register like Delphi

2007-01-23 Thread Daniël Mantione
Op Tue, 23 Jan 2007, schreef Alexandre Leclerc: > Hi all, > > I saw some time ago in a roadmap for the next version (1.2?) - that I > can't find anymore - a point about being compatible with Dephi calling > register... And I was wondering if anything has changed in FPC > regarding this? > > (B

[fpc-pascal] About FPC calling register like Delphi

2007-01-23 Thread Alexandre Leclerc
Hi all, I saw some time ago in a roadmap for the next version (1.2?) - that I can't find anymore - a point about being compatible with Dephi calling register... And I was wondering if anything has changed in FPC regarding this? (Because I use ROPS and there are issues because it is different fro

[fpc-pascal] Inline and defines

2007-01-23 Thread Alexander Todorov
Hello, What is the name of the conditional when we have inline on? I thought I can do {$IFDEF HASINLINE} but it doesn't work? Can you point me to some documentation please? At http://community.freepascal.org:1/docs-html/prog/progap7.html#x308-31G I don't see conditionals for the inline o

Re: [fpc-pascal] Becoming crazy with dll

2007-01-23 Thread Michel Meunier
I hope, I haven't made an error to get such messages! -- Michel Meunier Web: www.etoiles-a-bleau.fr ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: Holiday Message: [fpc-pascal] Becoming crazy with dll

2007-01-23 Thread Jonas Maebe
On 23 jan 2007, at 16:29, Andrew Denton wrote: **Out of the Office Message I've disabled his subscription. Jonas ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Holiday Message: Holiday Message: Holiday Message: Holiday Message: Holiday Message:[fpc-pascal]Becoming crazy with dll

2007-01-23 Thread Andrew Denton
**Out of the Office Message I am currently out of the office and will be returning on Monday 29th January. Please address any urgent issues to Dean Woods ([EMAIL PROTECTED]). ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Holiday Message: Holiday Message: Holiday Message: Holiday Message: [fpc-pascal]Becoming crazy with dll

2007-01-23 Thread Andrew Denton
**Out of the Office Message I am currently out of the office and will be returning on Monday 29th January. Please address any urgent issues to Dean Woods ([EMAIL PROTECTED]). ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Holiday Message: Holiday Message: Holiday Message: [fpc-pascal] Becoming crazy with dll

2007-01-23 Thread Andrew Denton
**Out of the Office Message I am currently out of the office and will be returning on Monday 29th January. Please address any urgent issues to Dean Woods ([EMAIL PROTECTED]). ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Holiday Message: Holiday Message: [fpc-pascal] Becoming crazy with dll

2007-01-23 Thread Andrew Denton
**Out of the Office Message I am currently out of the office and will be returning on Monday 29th January. Please address any urgent issues to Dean Woods ([EMAIL PROTECTED]). ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Holiday Message: [fpc-pascal] Becoming crazy with dll

2007-01-23 Thread Andrew Denton
**Out of the Office Message I am currently out of the office and will be returning on Monday 29th January. Please address any urgent issues to Dean Woods ([EMAIL PROTECTED]). ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

[fpc-pascal] Becoming crazy with dll

2007-01-23 Thread Michel Meunier
Hello, I try to translate a dll from delphi to fpc, but I have a lot of problem. First I am unable to load it with loadlibrary. the code of the library is: x library dlltest; {$mode objfpc}{$H+} uses Classes { add your units here }, dlltes