Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pgtypes.pas 520B

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