tb0225.pp 444 B

123456789101112131415161718192021222324252627282930
  1. { %NORUN }
  2. { Old file: tbs0263.pp }
  3. { export directive is not necessary in delphi anymore OK 0.99.13 (PFV) }
  4. {$ifdef Unix}
  5. {$define doit}
  6. {$endif}
  7. {$ifdef win32}
  8. {$define doit}
  9. {$endif}
  10. {$ifdef doit}
  11. library tb0225;
  12. {
  13. The export directive is not necessary anymore in delphi, it's a leftover
  14. from the 16bit model, just like near and far.
  15. }
  16. procedure testp;
  17. begin
  18. end;
  19. exports
  20. testp name 'testp';
  21. end.
  22. {$else}
  23. begin
  24. end.
  25. {$endif}