選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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.