classes.pp 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. rtlconst,
  23. sysutils,
  24. types,
  25. typinfo,
  26. windows;
  27. {$i classesh.inc}
  28. implementation
  29. uses
  30. sysconst;
  31. { OS - independent class implementations are in /inc directory. }
  32. {$i classes.inc}
  33. initialization
  34. CommonInit;
  35. finalization
  36. CommonCleanup;
  37. end.
  38. {
  39. $Log$
  40. Revision 1.5 2004-01-22 17:11:23 peter
  41. * classes uses types to import TPoint and TRect
  42. Revision 1.4 2004/01/13 18:04:25 florian
  43. * make win32 fixed
  44. Revision 1.3 2004/01/10 19:35:18 michael
  45. + Moved all resource strings to rtlconst/sysconst
  46. Revision 1.2 2003/10/07 16:20:21 florian
  47. * win32 now uses aliases from the windows unit for types like trect
  48. Revision 1.1 2003/10/06 21:01:07 peter
  49. * moved classes unit to rtl
  50. Revision 1.1 2003/10/06 20:33:58 peter
  51. * classes moved to rtl for 1.1
  52. * classes .inc and classes.pp files moved to fcl/classes for
  53. backwards 1.0.x compatiblity to have it in the fcl
  54. Revision 1.4 2002/10/14 19:46:13 peter
  55. * threading switch
  56. Revision 1.3 2002/09/07 15:15:29 peter
  57. * old logs removed and tabs fixed
  58. }