Am Mi, den 24.03.2004 schrieb Jeff Pohlmeyer um 07:35:
> > I tried to use gtk_window_remove_accel_group(...) but it is not
> > found by fpc (gtk has it, I've got the name from its docs).
>
> > Is is possible in a simple way to get the missing procedure working?
>
> Just add this declaration some
On Tue, 23 Mar 2004 22:35:48 -0800 (PST) Jeff Pohlmeyer
<[EMAIL PROTECTED]> wrote:
> > I tried to use gtk_window_remove_accel_group(...) but it is not
> > found by fpc (gtk has it, I've got the name from its docs).
>
> > Is is possible in a simple way to get the missing procedure working?
>
>
Many thanks to all for your help.
Lubomir/CBL
___
fpc-pascal maillist - [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
Hello,
> Second - new FPC v1.9.x for statement
>
> var p:pointer
> p:=Ptr(a,b);
>
> shows error "Incompatible types: got "FarPointer" expected "Pointer"".
>
> I found i can declare var p:farpointer;
> but i did not found any description for this type of pointer
> how can i use it.
It seems that t
Many thanks for your explanation.
-Original Message-
From: Peter Vreman [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 24, 2004 10:23 AM
To: [EMAIL PROTECTED]
Subject: RE: RE: [fpc-pascal]Problem with CASE statement
> Hi,
>
> yes i know this re-typing word(xxx), it is OK.
>
> Second -
> Hi,
>
> yes i know this re-typing word(xxx), it is OK.
>
> Second - new FPC v1.9.x for statement
>
> var p:pointer
> p:=Ptr(a,b);
>
> shows error "Incompatible types: got "FarPointer" expected "Pointer"".
>
> I found i can declare var p:farpointer;
> but i did not found any description for this t
> Thanks.
>
> Yes, you're right but i'm using this constants for backward compatibility
> with Borland Pascal.
>
> The problem is in declarations of constant:
>
> const xxx = $4400;
> yyy = $11;
>
> SizeOf(xxx) = 2 in FPC 1.0.10
> 4 in FPC 1.9.x
> SizeOf(yyy) = 1 in FP
Hi,
yes i know this re-typing word(xxx), it is OK.
Second - new FPC v1.9.x for statement
var p:pointer
p:=Ptr(a,b);
shows error "Incompatible types: got "FarPointer" expected "Pointer"".
I found i can declare var p:farpointer;
but i did not found any description for this type of pointer
how ca
From:[EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: [fpc-pascal]Problem with CASE statement
Date sent: Wed, 24 Mar 2004 08:01:04 +0100
> The problem is in declarations of constant:
>
> const xxx = $4400;
> yyy = $11;
>
> SizeOf(xxx) = 2 in FPC 1.0.10
> 4 in FPC 1.9.x