02_Server.dpr
上传用户:lzzxgs
上传日期:2013-03-15
资源大小:474k
文件大小:0k
源码类别:

P2P编程

开发平台:

Delphi

  1. program Server;
  2. uses
  3.   Forms,
  4.   U_Server in 'U_Server.pas' {frm_Server};
  5. {$R *.res}
  6. begin
  7.   Application.Initialize;
  8.   Application.CreateForm(Tfrm_Server, frm_Server);
  9.   Application.Run;
  10. end.