HttpDownload.h 330 B

12345678910111213
  1. #pragma once
  2. #include "global.h"
  3. bool DownloadFile(CString httpFile,CString storePath);
  4. bool DownloadFile2(CString httpFile,CString storePath,DownloadInfo *info);
  5. UINT ThreadFun(LPVOID lpParam);
  6. class CHttpDownload
  7. {
  8. public:
  9. CHttpDownload(void);
  10. ~CHttpDownload(void);
  11. void StartUpdate( ThreadParamInfo *info);
  12. };