| 12345678910111213 |
- #pragma once
- #include "global.h"
- bool DownloadFile(CString httpFile,CString storePath);
- bool DownloadFile2(CString httpFile,CString storePath,DownloadInfo *info);
- UINT ThreadFun(LPVOID lpParam);
- class CHttpDownload
- {
- public:
- CHttpDownload(void);
- ~CHttpDownload(void);
- void StartUpdate( ThreadParamInfo *info);
- };
|