WhoCQ.dpr
上传用户:sunrenlu
上传日期:2007-01-08
资源大小:199k
文件大小:0k
源码类别:

Internet/网络编程

开发平台:

Delphi

  1. program WhoCQ;
  2. uses
  3.   Forms,
  4.   Unit1 in 'Unit1.pas' {Form1},
  5.   Ingusclass in 'Ingusclass.pas',
  6.   Protohdr in 'Protohdr.pas',
  7.   packet32 in 'Packet32.pas',
  8.   IngusPacket in 'IngusPacket.pas';
  9. {$R *.RES}
  10. begin
  11.     Application.Initialize;
  12.   Application.ShowMainForm := False;
  13.   Application.Title := 'WhoCQ';
  14.   Application.CreateForm(TForm1, Form1);
  15.   Form1.Show;
  16.   Application.Run;
  17. end.