classes.pp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1998 by Michael Van Canneyt and Florian Klaempfl
  5. Classes unit for win32
  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. { Require threading }
  14. {$ifndef ver1_0}
  15. {$threading on}
  16. {$endif ver1_0}
  17. { determine the type of the resource/form file }
  18. {$define Win16Res}
  19. unit Classes;
  20. interface
  21. uses
  22. sysutils,
  23. typinfo,
  24. windows;
  25. {$i classesh.inc}
  26. implementation
  27. { OS - independent class implementations are in /inc directory. }
  28. {$i classes.inc}
  29. initialization
  30. CommonInit;
  31. finalization
  32. CommonCleanup;
  33. end.
  34. {
  35. $Log$
  36. Revision 1.2 2003-10-07 16:20:21 florian
  37. * win32 now uses aliases from the windows unit for types like trect
  38. Revision 1.1 2003/10/06 21:01:07 peter
  39. * moved classes unit to rtl
  40. Revision 1.1 2003/10/06 20:33:58 peter
  41. * classes moved to rtl for 1.1
  42. * classes .inc and classes.pp files moved to fcl/classes for
  43. backwards 1.0.x compatiblity to have it in the fcl
  44. Revision 1.4 2002/10/14 19:46:13 peter
  45. * threading switch
  46. Revision 1.3 2002/09/07 15:15:29 peter
  47. * old logs removed and tabs fixed
  48. }