mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 16:50:25 +02:00
* gtk2 interface for 64 bit fixed
git-svn-id: trunk@1094 -
This commit is contained in:
parent
b1b0ffc1ec
commit
444667ebc8
@ -35,7 +35,7 @@ unit glib2; // keep unit name lowercase for kylix
|
||||
interface
|
||||
|
||||
uses
|
||||
SysUtils;
|
||||
ctypes,SysUtils;
|
||||
|
||||
const
|
||||
{$ifdef win32}
|
||||
|
@ -23,14 +23,14 @@
|
||||
gchar = char;
|
||||
|
||||
Pgshort = ^gshort;
|
||||
gshort = smallint;
|
||||
gshort = cshort;
|
||||
|
||||
Pglong = ^glong;
|
||||
glong = longint;
|
||||
glong = clong;
|
||||
|
||||
Pgint = ^gint;
|
||||
PPgint = ^Pgint;
|
||||
gint = longint;
|
||||
gint = cint;
|
||||
|
||||
Pgboolean = ^gboolean;
|
||||
gboolean = longbool;
|
||||
@ -40,19 +40,19 @@
|
||||
guchar = byte;
|
||||
|
||||
Pgushort = ^gushort;
|
||||
gushort = word;
|
||||
gushort = cushort;
|
||||
|
||||
Pgulong = ^gulong;
|
||||
gulong = dword;
|
||||
gulong = culong;
|
||||
|
||||
Pguint = ^guint;
|
||||
guint = dword;
|
||||
guint = cuint;
|
||||
|
||||
Pgfloat = ^gfloat;
|
||||
gfloat = single;
|
||||
gfloat = cfloat;
|
||||
|
||||
Pgdouble = ^gdouble;
|
||||
gdouble = double;
|
||||
gdouble = cdouble;
|
||||
|
||||
pgpointer = ^gpointer;
|
||||
gpointer = pointer;
|
||||
|
Loading…
Reference in New Issue
Block a user