+ aliases for Java primitive types (jbyte, jshort, jint, jlong, jchar,

jsingle, jdouble, jboolean)

git-svn-id: branches/jvmbackend@18321 -
This commit is contained in:
Jonas Maebe 2011-08-20 07:45:39 +00:00
parent d840d99231
commit 817ebe5d8d

View File

@ -40,6 +40,16 @@ Type
HResult = type longint;
{ Java primitive types }
jboolean = boolean;
jbyte = shortint;
jshort = smallint;
jint = longint;
jlong = int64;
jchar = widechar;
jfloat = single;
jdouble = double;
const
{ max. values for longint and int}
maxLongint = $7fffffff;