optidx.inc 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. $Id$
  3. Copyright (c) 1998 by the FPC development team
  4. This file includes the message index types which can be used to display
  5. a message from the message file
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with this program; if not, write to the Free Software
  16. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. ****************************************************************************}
  18. const
  19. optionhelplines=117; {amount of lines for the -?}
  20. type
  21. toptionconst=(
  22. usage,
  23. only_one_source_support,
  24. def_only_for_os2,
  25. no_nested_response_file,
  26. no_source_found,
  27. illegal_para,
  28. help_pages_para,
  29. unable_open_file,
  30. reading_further_from,
  31. target_is_already_set,
  32. no_shared_lib_under_dos,
  33. too_many_ifdef,
  34. too_many_endif,
  35. too_less_endif,
  36. no_debug_support,
  37. no_debug_support_recompile_fpc,
  38. {logo}
  39. logo_start,
  40. logo_end,
  41. {info}
  42. info_start,
  43. info1,
  44. info2,
  45. info3,
  46. info4,
  47. info5,
  48. info_end,
  49. {This should be the last}
  50. endoptionconst
  51. );