classes.pp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1999-2000 by Michael Van Canneyt and Florian Klaempfl
  5. Classes unit for OS/2
  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. DosCalls, (* Needed here (i.e. before SysUtils) to avoid type clashes. *)
  19. strings,
  20. sysutils;
  21. {$i classesh.inc}
  22. implementation
  23. uses
  24. typinfo;
  25. { OS - independent class implementations are in /inc directory. }
  26. {$i classes.inc}
  27. initialization
  28. CommonInit;
  29. finalization
  30. CommonCleanup;
  31. end.
  32. {
  33. $Log$
  34. Revision 1.4 2000-12-19 00:43:07 hajny
  35. + FCL made compilable under OS/2
  36. Revision 1.3 2000/08/25 17:32:16 hajny
  37. * Cosmetic change (OS/2 instead of win32 in header)
  38. Revision 1.2 2000/07/13 11:33:01 michael
  39. + removed logs
  40. }