FTPSERV.CPP
上传用户:xdgkgcw
上传日期:2007-01-04
资源大小:92k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

WINDOWS

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. USERES("FtpServ.res");
  5. USEFORM("..FtpSrv1.cpp", FtpServerForm);
  6. //---------------------------------------------------------------------------
  7. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  8. {
  9.     try
  10.     {
  11.         Application->Initialize();
  12.         Application->CreateForm(__classid(TFtpServerForm), &FtpServerForm);
  13.         Application->Run();
  14.     }
  15.     catch (Exception &exception)
  16.     {
  17.         Application->ShowException(&exception);
  18.     }
  19.     return 0;
  20. }
  21. //---------------------------------------------------------------------------