-
-
[求助]为什么DLL一联网就崩溃?谁能解答下?
-
发表于:
2017-1-6 16:56
3671
-
为什么DLL一联网就崩溃?谁能解答下?
CString doGet(CString href)
{
CString httpsource="";
CInternetSession session1(NULL,0);
CHttpFile* pHTTPFile=NULL;
try{
pHTTPFile=(CHttpFile*)session1.OpenURL(href);
}catch(CInternetException)
{
pHTTPFile=NULL;
}
if(pHTTPFile)
{
CString text;
for(int i=0;pHTTPFile->ReadString(text);i++)
{
httpsource=httpsource+text;
}
pHTTPFile->Close();
delete pHTTPFile;
}else
{
}
return httpsource;
}
DLL创建一个线程去运行CString httpsource=doGet("http://www.baidu.com");直接就崩溃了,是什么原因呢?
[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课