innr.inc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library and compiler.
  4. Copyright (c) 1993,98 by the Free Pascal development team
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. const
  12. in_lo_word = 1;
  13. in_hi_word = 2;
  14. in_lo_long = 3;
  15. in_hi_long = 4;
  16. { to be able to compile with ord intern or not }
  17. in_ord_char = 5;
  18. in_ord_x = 5;
  19. in_length_string = 6;
  20. in_chr_byte = 7;
  21. in_inc_byte = 8;
  22. in_inc_word = 9;
  23. in_inc_dword = 10;
  24. in_dec_byte = 11;
  25. in_dec_word = 12;
  26. in_dec_dword = 13;
  27. in_write_x = 14;
  28. in_writeln_x = 15;
  29. in_read_x = 16;
  30. in_readln_x = 17;
  31. in_concat_x = 18;
  32. in_assigned_x = 19;
  33. in_str_x_string = 20;
  34. in_ofs_x = 21;
  35. in_sizeof_x = 22;
  36. in_typeof_x = 23;
  37. in_val_x = 24;
  38. in_reset_x = 25;
  39. in_rewrite_x = 26;
  40. in_low_x = 27;
  41. in_high_x = 28;
  42. in_seg_x = 29;
  43. in_pred_x = 30;
  44. in_succ_x = 31;
  45. in_reset_typedfile = 32;
  46. in_rewrite_typedfile = 33;
  47. in_settextbuf_file_x = 34;
  48. in_inc_x = 35;
  49. in_dec_x = 36;
  50. {
  51. $Log$
  52. Revision 1.2 1998-05-12 10:42:45 peter
  53. * moved getopts to inc/, all supported OS's need argc,argv exported
  54. + strpas, strlen are now exported in the systemunit
  55. * removed logs
  56. * removed $ifdef ver_above
  57. }