Shared.LangOptionsSectionDirectives.pas 682 B

12345678910111213141516171819202122232425262728293031323334
  1. unit Shared.LangOptionsSectionDirectives;
  2. {
  3. Inno Setup
  4. Copyright (C) 1997-2020 Jordan Russell
  5. Portions by Martijn Laan
  6. For conditions of distribution and use, see LICENSE.TXT.
  7. LangOptions section directives
  8. }
  9. interface
  10. const
  11. LangOptionsSectionDirectivePrefixLength = 2;
  12. type
  13. TLangOptionsSectionDirective = (
  14. lsCopyrightFontName,
  15. lsCopyrightFontSize,
  16. lsDialogFontName,
  17. lsDialogFontSize,
  18. lsDialogFontStandardHeight,
  19. lsLanguageCodePage,
  20. lsLanguageID,
  21. lsLanguageName,
  22. lsRightToLeft,
  23. lsTitleFontName,
  24. lsTitleFontSize,
  25. lsWelcomeFontName,
  26. lsWelcomeFontSize);
  27. implementation
  28. end.