| 1234567891011121314151617181920212223242526272829303132 |
- unit 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
- type
- TLangOptionsSectionDirective = (
- lsCopyrightFontName,
- lsCopyrightFontSize,
- lsDialogFontName,
- lsDialogFontSize,
- lsDialogFontStandardHeight,
- lsLanguageCodePage,
- lsLanguageID,
- lsLanguageName,
- lsRightToLeft,
- lsTitleFontName,
- lsTitleFontSize,
- lsWelcomeFontName,
- lsWelcomeFontSize);
-
- implementation
- end.
|