[fpc-pascal]pdcurses and fpc

2004-06-21 Thread Maciej Łaszcz
Is there fpc interface to pdcurses or any other port of ncurses for dos? ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]pdcurses and fpc

2004-06-21 Thread Michael Van Canneyt
On Sun, 20 Jun 2004, [iso-8859-2] Maciej £aszcz wrote: > Is there fpc interface to pdcurses or any other port of ncurses for dos? The ncurses interface used to work with pdcurses. I tested that. I copied the file so the filenames matched with what the unit expected, and it worked out of the box

[fpc-pascal]Align instruction

2004-06-21 Thread Marcel Martin
Hello, With v1.9.4, is there a way to align a label in an assembler procedure? Thanks -- mm http://www.ellipsa.net/ ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal]Win32 API Call

2004-06-21 Thread Jim Wilson
I'm trying to get a Win32 API call to work, but either I found a bug in FPC (not likely) or I'm doing something wrong (more then likely). There's an API function called GetCurrentHwProfile that doesn't seem to be recognized by FPC, so I added it myself using external. However, when I try callin

Re: [fpc-pascal]Win32 API Call

2004-06-21 Thread Michalis Kamburelis
Hi You made a few mistakes translating GetCurrentHwProfile to Pascal: 1. parameter to GetCurrentHwProfile should be TProfileInfo, not PProfileInfo (using "var" parameter already forces passing HWProfile by reference) 2. result of GetCurrentHwProfile should be LongBool (4 bytes), not boolean (1

Re: [fpc-pascal]Align instruction

2004-06-21 Thread Peter Vreman
> Hello, > > With v1.9.4, is there a way to align a label in an assembler > procedure? .align, .balign or .p2align ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]Win32 API Call

2004-06-21 Thread Peter Vreman
> I'm trying to get a Win32 API call to work, but either I found a bug in > FPC > (not likely) or I'm doing something wrong (more then likely). > > There's an API function called GetCurrentHwProfile that doesn't seem to be > recognized by FPC, so I added it myself using external. However, when I >