multithreadprocslaz.pas 414 B

123456789101112131415161718192021
  1. { This file was automatically created by Lazarus. Do not edit!
  2. This source is only used to compile and install the package.
  3. }
  4. unit MultiThreadProcsLaz;
  5. {$warn 5023 off : no warning about unused units}
  6. interface
  7. uses
  8. MTProcs, MTPUtils, MTPCPU, LazarusPackageIntf;
  9. implementation
  10. procedure Register;
  11. begin
  12. end;
  13. initialization
  14. RegisterPackage('MultiThreadProcsLaz', @Register);
  15. end.