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

Delphi控件源码

开发平台:

WINDOWS

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