varutils.pp 893 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by the Free Pascal development team
  5. Interface and OS-dependent part of variant support
  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. Unit varutils;
  14. Interface
  15. Uses sysutils;
  16. // Read definitions.
  17. {$i varutilh.inc}
  18. Implementation
  19. // Code common to all platforms.
  20. {$i cvarutil.inc}
  21. // Code common to non-win32 platforms.
  22. {$i varutils.inc}
  23. end.
  24. {
  25. $Log$
  26. Revision 1.2 2002-09-07 16:01:25 peter
  27. * old logs removed and tabs fixed
  28. }