tbs0263.pp 215 B

123456789101112131415
  1. { $OPT=-Twin32 }
  2. library tbs0263;
  3. {
  4. The export directive is not necessary anymore in delphi, it's a leftover
  5. from the 16bit model, just like near and far.
  6. }
  7. procedure p;
  8. begin
  9. end;
  10. exports
  11. p name 'p';
  12. end.