Shared.LangOptionsSectionDirectives.pas 797 B

123456789101112131415161718192021222324252627282930313233343536
  1. unit Shared.LangOptionsSectionDirectives;
  2. {
  3. Inno Setup
  4. Copyright (C) 1997-2025 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, { obsolete }
  15. lsCopyrightFontSize, { obsolete }
  16. lsDialogFontBaseScaleHeight,
  17. lsDialogFontBaseScaleWidth,
  18. lsDialogFontName,
  19. lsDialogFontSize,
  20. lsDialogFontStandardHeight,
  21. lsLanguageCodePage,
  22. lsLanguageID,
  23. lsLanguageName,
  24. lsRightToLeft,
  25. lsTitleFontName, { obsolete }
  26. lsTitleFontSize, { obsolete }
  27. lsWelcomeFontName,
  28. lsWelcomeFontSize);
  29. implementation
  30. end.