dynarrh.inc 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. This file contains type declarations necessary for the dynamic
  6. array routine helpers in syshelp.inc
  7. See the File COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. type
  14. tdynarrayindex = longint;
  15. pdynarrayindex = ^tdynarrayindex;
  16. t_size = dword;
  17. {
  18. $Log$
  19. Revision 1.1 2001-08-01 15:00:10 jonas
  20. + "compproc" helpers
  21. * renamed several helpers so that their name is the same as their
  22. "public alias", which should facilitate the conversion of processor
  23. specific code in the code generator to processor independent code
  24. * some small fixes to the val_ansistring and val_widestring helpers
  25. (always immediately exit if the source string is longer than 255
  26. chars)
  27. * fixed fpc_dynarray_high and fpc_dynarray_length if the dynarray is
  28. still nil (used to crash, now return resp -1 and 0)
  29. }