12345678910111213141516171819202122232425262728293031323334 |
- unit Shared.LangOptionsSectionDirectives;
- {
- Inno Setup
- Copyright (C) 1997-2020 Jordan Russell
- Portions by Martijn Laan
- For conditions of distribution and use, see LICENSE.TXT.
- LangOptions section directives
- }
- interface
- const
- LangOptionsSectionDirectivePrefixLength = 2;
- type
- TLangOptionsSectionDirective = (
- lsCopyrightFontName,
- lsCopyrightFontSize,
- lsDialogFontName,
- lsDialogFontSize,
- lsDialogFontStandardHeight,
- lsLanguageCodePage,
- lsLanguageID,
- lsLanguageName,
- lsRightToLeft,
- lsTitleFontName,
- lsTitleFontSize,
- lsWelcomeFontName,
- lsWelcomeFontSize);
-
- implementation
- end.
|