* pointer's of some basetypes

This commit is contained in:
marco 2003-09-16 21:20:40 +00:00
parent 2877df766c
commit a99cf467f9
2 changed files with 21 additions and 5 deletions

View File

@ -56,11 +56,19 @@ Type
cshort = integer;
cushort= word;
pcInt = ^cInt;
pcInt = ^cInt;
pcUInt = ^cUInt;
pcLong = ^cLong;
pculong = ^cuLong;
pcshort = ^cshort;
pcushort= ^cushort;
{
{
$Log$
Revision 1.1 2003-01-03 11:21:32 marco
Revision 1.2 2003-09-16 21:20:40 marco
* pointer's of some basetypes
Revision 1.1 2003/01/03 11:21:32 marco
* copied and checked from Linux.

View File

@ -56,11 +56,19 @@ Type
cshort = integer;
cushort= word;
pcInt = ^cInt;
pcInt = ^cInt;
pcUInt = ^cUInt;
pcLong = ^cLong;
pculong = ^cuLong;
pcshort = ^cshort;
pcushort= ^cushort;
{
$Log$
Revision 1.2 2002-12-18 16:43:26 marco
Revision 1.3 2003-09-16 21:20:40 marco
* pointer's of some basetypes
Revision 1.2 2002/12/18 16:43:26 marco
* new unix rtl, linux part.....
Revision 1.1 2002/11/09 22:39:28 marco