objpas.pp 780 B

1234567891011121314151617181920212223242526272829
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 1999-2000 by the Free Pascal development team
  4. This unit makes Free Pascal as much as possible Delphi compatible
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. {$Mode ObjFpc}
  12. {$I-,S-}
  13. unit objpas;
  14. interface
  15. { first, in object pascal, the integer type must be redefined }
  16. const
  17. MaxInt = MaxLongint;
  18. type
  19. Integer = longint;
  20. implementation
  21. end.