source: trunk/Packages/synapse/source/demo/TFTPServer/TFTPServer.dpr

Last change on this file was 2, checked in by chronos, 12 years ago
  • Přidáno: Základní kostra projektu.
  • Přidáno: Knihovna synapse.
File size: 250 bytes
Line 
1program TFTPServer;
2
3uses
4 Forms,
5 MainBox in 'MainBox.pas' {MainForm},
6 TFTPDaemonThread in 'TFTPDaemonThread.pas';
7
8{$R *.res}
9
10begin
11 Application.Initialize;
12 Application.CreateForm(TMainForm, MainForm);
13 Application.Run;
14end.
Note: See TracBrowser for help on using the repository browser.