Menu

[r77]: / trunk / IDE / ScriptEngineII.dpr  Maximize  Restore  History

Download this file

35 lines (29 with data), 1.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
program ScriptEngineII;
{%File 'ScriptEngine.inc'}
uses
FastMM4,
Controls,
Windows,
Forms,
main in 'main.pas' {MainForm},
uFormCodeEditor in 'units\Editor\uFormCodeEditor.pas',
uFormCompileMessages in 'units\Editor\uFormCompileMessages.pas',
uScriptProject in 'units\ScriptProject\uScriptProject.pas',
ConsoleForm in 'units\Console\ConsoleForm.pas' {ConsoleWindow},
Console in 'units\Console\CONSOLE.PAS',
uFrmAbout in 'units\Forms\uFrmAbout.pas' {frmAbout},
SynHighlighterSE2 in 'units\Editor\SynHighlighterSE2.pas',
uFrmSearch in 'units\Forms\uFrmSearch.pas' {SearchDialog},
uPackageLoader in 'units\uPackageLoader.pas',
uPackageInfo in 'units\IDE Controls\uPackageInfo.pas';
{$R *.res}
begin
Screen.Cursors[crHandPoint] := LoadCursor(0, IDC_HAND);
Screen.Cursors[crSizeNS] := LoadCursor(0, IDC_SIZENS);
Screen.Cursors[crSizeWE] := LoadCursor(0, IDC_SIZEWE);
Screen.Cursors[crNo] := LoadCursor(0, IDC_NO);
Application.Initialize;
Application.Title := 'ScriptEngine II';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.