Inno-Setup-issrc/Projects/Src/Shared.LangOptionsSectionDirectives.pas
Martijn Laan 8150ccabcc
Cleanup.
2024-10-26 09:38:44 +02:00

35 lines
682 B
ObjectPascal

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.