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 >
Pascal/Delphi Source File  |  1995-10-31  |  380b  |  24 lines

  1. unit Use32;
  2.  
  3. interface
  4.  
  5. type
  6.   SmallInt   = System.Integer;
  7.   SmallWord  = System.Word;
  8. {$IFDEF USE32}
  9.   Integer    = System.Longint;
  10.   Word       = System.Longint;
  11. const
  12.   MaxInt     = MaxLongint;
  13. {$ENDIF}
  14. type
  15.   PByte      = ^Byte;
  16.   PWord      = ^Word;
  17.   PLongint   = ^Longint;
  18.   PSmallInt  = ^SmallInt;
  19.   PSmallWord = ^SmallWord;
  20.  
  21. implementation
  22.  
  23. end.
  24.