|
大家帮忙看一下这个代码,这个代码再加入并发组函数之前是正确的,加入后会提示如图所示的错误,不知道为什么,请高手指点....
Action()
{
web_concurrent_start(NULL);
web_url("今日头条",
"URL=http://192.168.3.188:8089//h/zxzx/sdbtt.htm",
"Resource=1",
"RecContentType=text/html",
"Referer=0",
"Snapshot=t1.inf",
"Mode=HTML",
LAST
);
web_url("新股提示",
"URL=http://192.168.3.188:8089//h/zxzx/xgsg.htm",
"Resource=1",
"RecContentType=text/html",
"Referer=0",
"Snapshot=t1.inf",
"Mode=HTML",
LAST
);
web_url("重要提示",
"URL=http://192.168.3.188:8089/demo/msgData/List.xml",
"Resource=1",
"RecContentType=text/html",
"Referer=0",
"Snapshot=t1.inf",
"Mode=HTML",
LAST
);
web_url("信息披露",
"URL=http://192.168.3.188:8089/sd/c/todaybulletin.xml",
"Resource=1",
"RecContentType=text/html",
"Referer=0",
"Snapshot=t1.inf",
"Mode=HTML",
LAST
);
web_url("股市日历",
"URL=http://192.168.3.188:8089/sd/i/2010/S06.xml",
"Resource=1",
"RecContentType=text/html",
"Referer=0",
"Snapshot=t1.inf",
"Mode=HTML",
LAST
);
web_concurrent_end(NULL);
return 0;
} |
|