classes.pp 940 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. end.
  29. {
  30. $Log$
  31. Revision 1.1 2004-09-05 20:58:47 armin
  32. * first rtl version for netwlibc
  33. }