ServerProject.dpr
上传用户:xgd119
上传日期:2007-05-02
资源大小:514k
文件大小:0k
源码类别:

P2P编程

开发平台:

Delphi

  1. program ServerProject;
  2. uses
  3.   Forms,
  4.   MainUnit in 'MainUnit.pas' {Server},
  5.   testQQCommon in '../Common/testQQCommon.pas';
  6. {$R *.res}
  7. begin
  8.   Application.Initialize;
  9.   Application.CreateForm(TServer, Server);
  10.   Application.Run;
  11. end.