source: Console test/ConsoleText.dpr

Last change on this file was 15, checked in by george, 15 years ago
File size: 535 bytes
Line 
1program ConsoleText;
2
3uses
4 Forms,
5 UTextScreen in 'UTextScreen.pas',
6 UConsole in 'UConsole.pas',
7 UConsoleApp in 'UConsoleApp.pas',
8 UFileSystem in 'UFileSystem.pas',
9 UMainForm in 'UMainForm.pas' {MainForm},
10 UMyConsoleApp in 'UMyConsoleApp.pas',
11 UKeyboard in 'UKeyboard.pas';
12
13{$R *.res}
14
15begin
16 {$WARN SYMBOL_PLATFORM OFF}
17 ReportMemoryLeaksOnShutdown := DebugHook <> 0;
18 {$WARN SYMBOL_PLATFORM ON}
19 Application.Initialize;
20 Application.CreateForm(TMainForm, MainForm);
21 Application.Run;
22end.
Note: See TracBrowser for help on using the repository browser.