tb0225.pp 375 B

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