Inno-Setup-issrc/Components/ScintInt.InnoSetup.pas

31 lines
664 B
ObjectPascal
Raw Permalink Normal View History

2024-08-04 21:40:15 +02:00
unit ScintInt.InnoSetup;
2024-06-18 19:31:16 +02:00
{
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;
2024-06-26 08:08:46 +02:00
SC_CMDKEYS_VSCODE_WINDOWS = 1;
2024-08-03 06:58:54 +02:00
SCI_RESETALLCMDKEYS = 3000;
SC_AUTOCOMPLETE_DARK_MODE = 4;
SCI_AUTOCSETMINWIDTH = 3010;
SCI_AUTOCGETMINWIDTH = 3011;
SCI_CALLTIPSETFOREBORDER = 3020;
2024-07-26 08:14:30 +02:00
SC_MOUSEMAPPING_DEFAULT = 0;
SC_MOUSEMAPPING_VSCODE_WINDOWS = 1;
2024-08-03 06:58:54 +02:00
SCI_SETMOUSEMAPPING = 3030;
SCI_GETMOUSEMAPPING = 3031;
2024-06-18 19:31:16 +02:00
implementation
end.