以下几行简单的C的代码为什么不能在LR的WEB录制的脚本中用,会报错
//在脚本写了这几句varchar variable
char string;
strcpy(string,"");
strcpy(string,lr_eval_string("frame{test}"));//test为参数
//报错信息如下
Action.c (138): undeclared identifier `varchar'
Action.c (138): syntax error; found `variable' expecting `;'
Action.c (138): undeclared identifier `variable'
Action.c (138): type error: pointer expected
Action.c (141): illegal statement termination
Action.c (141): skipping `char'
Action.c (141): undeclared identifier `string'
Action.c (141): type error: pointer expected
d:\\testscripts\\\311\356\311\356\311\356\\\\combined_\311\356\311\356\311\356.c (5): 8 errors, not writing pre_cci.ci 你学学C的语法再来问吧 楼上的太打击人了 C语言中哪有varchar数据类型啊!!糊涂了吧? 第一句改成
char variable ;
记得最后加分号。。 按照云层的改
页:
[1]