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
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
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
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
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
> 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
> 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
>