classes.pp 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. This file is part of the Free Component Library (FCL)
  3. Copyright (c) 1999-2000 by Michael Van Canneyt and Florian Klaempfl
  4. Classes unit for BeOS
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. {$mode objfpc}
  12. {$modeswitch FUNCTIONREFERENCES}
  13. {$define FPC_HAS_REFERENCE_PROCEDURE}
  14. {$endif}
  15. { determine the type of the resource/form file }
  16. {$define Win16Res}
  17. unit Classes;
  18. interface
  19. uses
  20. sysutils,
  21. rtlconsts,
  22. types,
  23. typinfo,
  24. sortbase;
  25. {$i classesh.inc}
  26. implementation
  27. uses
  28. baseunix,unix;
  29. { OS - independent class implementations are in /inc directory. }
  30. {$i classes.inc}
  31. initialization
  32. CommonInit;
  33. finalization
  34. CommonCleanup;
  35. {$ifndef ver1_0}
  36. if ThreadsInited then
  37. DoneThreads;
  38. {$endif}
  39. end.