source: trunk/OpenWinBox.dpr

Last change on this file was 2, checked in by george, 15 years ago
  • Added: Test telnet connection with custom class TRouterOS.
File size: 697 bytes
Line 
1program OpenWinBox;
2
3uses
4 Forms,
5 ULoaderForm in 'ULoaderForm.pas' {LoaderForm},
6 RouterOSAPI in 'RouterOSAPI.pas',
7 UApplicationInfo in 'UApplicationInfo.pas',
8 URegistry in 'URegistry.pas',
9 UHostAddressList in 'UHostAddressList.pas',
10 URouterOS in 'URouterOS.pas',
11 UMainForm in 'UMainForm.pas' {MainForm};
12
13{$R *.res}
14
15begin
16 {$WARN SYMBOL_PLATFORM OFF}
17 ReportMemoryLeaksOnShutdown := DebugHook <> 0;
18 {$WARN SYMBOL_PLATFORM ON}
19
20 Application.Initialize;
21 Application.ShowMainForm := False;
22 Application.Title := 'OpenWinBox';
23 Application.CreateForm(TLoaderForm, LoaderForm);
24 Application.CreateForm(TMainForm, MainForm);
25 Application.Run;
26end.
Note: See TracBrowser for help on using the repository browser.