FTPSERV.CPP
资源名称:ftpsrv.zip [点击查看]
上传用户:xdgkgcw
上传日期:2007-01-04
资源大小:92k
文件大小:1k
源码类别:
Delphi控件源码
开发平台:
WINDOWS
- //---------------------------------------------------------------------------
- #include <vclvcl.h>
- #pragma hdrstop
- //---------------------------------------------------------------------------
- USERES("FtpServ.res");
- USEFORM("..Ftpsrv1.cpp", FtpServerForm);
- //---------------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- try
- {
- Application->Initialize();
- Application->CreateForm(__classid(TFtpServerForm), &FtpServerForm);
- Application->Run();
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- return 0;
- }
- //---------------------------------------------------------------------------