Inno-Setup-issrc/Components/ScintInt.InnoSetup.pas
2024-09-26 14:51:17 +02:00

31 lines
664 B
ObjectPascal

unit ScintInt.InnoSetup;
{
Inno Setup
Copyright (C) 1997-2024 Jordan Russell
Portions by Martijn Laan
For conditions of distribution and use, see LICENSE.TXT.
Constants added in Inno Setup's Scintilla build
}
interface
const
SC_MARK_BACKFORE = 34;
SC_CMDKEYS_DEFAULT = 0;
SC_CMDKEYS_VSCODE_WINDOWS = 1;
SCI_RESETALLCMDKEYS = 3000;
SC_AUTOCOMPLETE_DARK_MODE = 4;
SCI_AUTOCSETMINWIDTH = 3010;
SCI_AUTOCGETMINWIDTH = 3011;
SCI_CALLTIPSETFOREBORDER = 3020;
SC_MOUSEMAPPING_DEFAULT = 0;
SC_MOUSEMAPPING_VSCODE_WINDOWS = 1;
SCI_SETMOUSEMAPPING = 3030;
SCI_GETMOUSEMAPPING = 3031;
implementation
end.