tbs0263.pp 335 B

1234567891011121314151617181920212223242526
  1. {$ifdef linux}
  2. {$define doit}
  3. {$endif}
  4. {$ifdef win32}
  5. {$define doit}
  6. {$endif}
  7. {$ifdef doit}
  8. library tbs0263;
  9. {
  10. The export directive is not necessary anymore in delphi, it's a leftover
  11. from the 16bit model, just like near and far.
  12. }
  13. procedure testp;
  14. begin
  15. end;
  16. exports
  17. testp name 'testp';
  18. end.
  19. {$else}
  20. begin
  21. end.
  22. {$endif}