home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1995 December
/
SOFM_Dec1995.bin
/
pc
/
os2
/
vpascal
/
source
/
rtl
/
use32.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-10-31
|
380 b
|
24 lines
unit Use32;
interface
type
SmallInt = System.Integer;
SmallWord = System.Word;
{$IFDEF USE32}
Integer = System.Longint;
Word = System.Longint;
const
MaxInt = MaxLongint;
{$ENDIF}
type
PByte = ^Byte;
PWord = ^Word;
PLongint = ^Longint;
PSmallInt = ^SmallInt;
PSmallWord = ^SmallWord;
implementation
end.