1 |
{io core originally for linux bworld}
|
2 |
|
3 |
{ Copyright (C) 2005 Bas Steendijk and Peter Green
|
4 |
For conditions of distribution and use, see copyright notice in zlib_license.txt
|
5 |
which is included in the package
|
6 |
----------------------------------------------------------------------------- }
|
7 |
|
8 |
unit pgtypes;
|
9 |
interface
|
10 |
type
|
11 |
{$ifdef cpu386}{$define i386}{$endif}
|
12 |
{$ifdef i386}
|
13 |
taddrint=longint;
|
14 |
{$else}
|
15 |
taddrint=sizeint;
|
16 |
{$endif}
|
17 |
paddrint=^taddrint;
|
18 |
|
19 |
implementation
|
20 |
end.
|