classes.pp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1999-2004 by Michael Van Canneyt and Florian Klaempfl
  5. Classes unit for netware libc
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {$mode objfpc}
  13. { determine the type of the resource/form file }
  14. {$define Win16Res}
  15. unit Classes;
  16. interface
  17. uses
  18. sysutils,
  19. types,
  20. typinfo,
  21. rtlconst,
  22. systhrds,
  23. Libc;
  24. {$i classesh.inc}
  25. implementation
  26. { OS - independent class implementations are in /inc directory. }
  27. {$i classes.inc}
  28. initialization
  29. CommonInit;
  30. finalization
  31. DoneThreads;
  32. CommonCleanup;
  33. end.
  34. {
  35. $Log$
  36. Revision 1.2 2004-09-26 19:23:34 armin
  37. * exiting threads at nlm unload
  38. * renamed some libc functions
  39. Revision 1.1 2004/09/05 20:58:47 armin
  40. * first rtl version for netwlibc
  41. }