Re: [fpc-pascal] LongInt and LongWord types

2020-07-08 Thread Sven Barth via fpc-pascal
Am 08.07.2020 um 23:00 schrieb Marcelo Rocha via fpc-pascal: Delphi's LongInt and LongWord are 32 bits on Windows, but 64 bits on supported Posix platforms(http://docwiki.embarcadero.com/RADStudio/Rio/en/Simple_Types_(Delphi)), following the conventions from LP64/LLP64. FreePascal declares with

Re: [fpc-pascal] fpDebug function-call proof-of-concept

2020-07-08 Thread Ryan Joseph via fpc-pascal
> On Jul 7, 2020, at 8:13 PM, Joost van der Sluis wrote: > > > I am using this plugin: (Please install and give feedback) > https://marketplace.visualstudio.com/items?itemName=CNOC.fpdebug > > Well, actually I wrote it: > https://gitlab.freepascal.org/Joost/vscode-fpdebug Joost, it sounds li

[fpc-pascal] LongInt and LongWord types

2020-07-08 Thread Marcelo Rocha via fpc-pascal
Delphi's LongInt and LongWord are 32 bits on Windows, but 64 bits on supported Posix platforms( http://docwiki.embarcadero.com/RADStudio/Rio/en/Simple_Types_(Delphi)), following the conventions from LP64/LLP64. FreePascal declares with the same size for all platforms. What's the best way to do por