win32 http download
摘要:
HTTPClient.h#pragma once#ifndef HTTPClient_H_#define HTTPClient_H_#include <string>using namespace std;class HTTPClient{public: HTTPClient(void); ~HTTPClient(void); bool DownloadFile(string serverName,int port,string sourcePath, string fileName, string localDirectory);};#endif HTTPClient.c... 阅读全文
posted @ 2012-03-26 14:49 chuncn 阅读(1749) 评论(0) 推荐(0) 编辑