* fixed gfloat type

git-svn-id: trunk@412 -
This commit is contained in:
florian 2005-06-15 07:15:52 +00:00
parent 1fa6d8c993
commit 089fd11e6b

View File

@ -49,15 +49,10 @@
guint = dword;
Pgfloat = ^gfloat;
{$IFDEF KYLIX}
gfloat = single; // Don't know why, but some routines requires this
{$ELSE}
gfloat = double;
{$ENDIF}
gfloat = double;
Pgdouble = ^gdouble;
gdouble = double;
// gdouble = extended; // Or perhaps this one???
pgpointer = ^gpointer;
gpointer = pointer;