tb0225.pp 346 B

123456789101112131415161718192021
  1. { %TARGET=win32,linux }
  2. { %NORUN }
  3. { Old file: tbs0263.pp }
  4. { export directive is not necessary in delphi anymore OK 0.99.13 (PFV) }
  5. library tb0225;
  6. {
  7. The export directive is not necessary anymore in delphi, it's a leftover
  8. from the 16bit model, just like near and far.
  9. }
  10. procedure testp;
  11. begin
  12. end;
  13. exports
  14. testp name 'testp';
  15. end.