[fpc-pascal] Enabling FPC_HAS_FEATURE_CONSOLEIO

2008-07-28 Thread leledumbo
I need FPC (or better, Pascal) console IO feature for my OS. That is, Write(Ln) (and possibly Read(Ln)) with variable number and type of arguments. I already have my own, but each can only take one argument. So, a statement like: WriteLn('Hello, I am ',20,' years old'); must be splitted into:

[fpc-pascal] Enabling FPC_HAS_FEATURE_HEAP

2008-07-28 Thread leledumbo
I already have a heap allocator implemented. The bad news is, it's implemented in a unit. The system unit defines heap functions as external (I made my system unit by cutting down Win32 one, but I use ELF as executable format. Nutz, isn't it?), the only way I can think of is to reimplement mine

Re: [fpc-pascal] EOLESysError calling CreateOLEObject

2008-07-28 Thread Felipe Monteiro de Carvalho
Reminder, thanks On Tue, Jul 22, 2008 at 12:58 PM, Felipe Monteiro de Carvalho [EMAIL PROTECTED] wrote: On Tue, Jul 22, 2008 at 10:59 AM, Marco van de Voort [EMAIL PROTECTED] wrote: Fixed, added some more clsid constants in the process r11434 Could the fix be merged to 2.2.2? I would like

Re: [fpc-pascal] Enabling FPC_HAS_FEATURE_CONSOLEIO

2008-07-28 Thread Mattias Gaertner
On Mon, 28 Jul 2008 02:12:35 -0700 (PDT) leledumbo [EMAIL PROTECTED] wrote: I need FPC (or better, Pascal) console IO feature for my OS. That is, Write(Ln) (and possibly Read(Ln)) with variable number and type of arguments. I already have my own, but each can only take one argument. So, a