|
#include "web_api.h"
Action()
{
my_host = lr_get_host_name( );
lr_error_message
lr_rendezvous("查找");
/*
* 这是一个查找
*
*/
web_url("s",
"URL=http://www.baidu.com/s?wd=%C9%EA%BD%AD%BB%D4&cl=3",
"Resource=0",
"RecContentType=text/html",
"Referer=http://www.baidu.com/",
"Snapshot=t2.inf",
"Mode=HTML",
LAST);
return 0;
}
这是我录制的脚本,日志中出现三个问题,该怎麽调整怎能解决?谢谢帮助!!
问题是:
declared identifier `my_host'
Action.c (6): operands of = have illegal types `int' and `pointer to char'
Action.c (9): syntax error; found `lr_rendezvous' expecting `;'
c:\\documents and settings\\jianfeng_li.ladder-wsa3an1d\\\327\300\303\346\\1\\\\combined_1.c (4): 3 errors, not writing pre_cci.ci |
|