LR用 lr_convert_string_encoding中文转码时的一个问题
中文转码代码如下:char temp;
char hotelname;
lr_convert_string_encoding(lr_eval_string("{title}"),LR_ENC_SYSTEM_LOCALE, LR_ENC_UTF8 ,"temp");
strcat(hotelname,lr_eval_string ( "{temp}" ));
replay log显示:
vuser_init.c (260): illegal statement termination
vuser_init.c (260): skipping `char'
vuser_init.c (260): undeclared identifier `temp'
vuser_init.c (261): illegal statement termination
vuser_init.c (261): skipping `char'
vuser_init.c (261): undeclared identifier `hotelname'
vuser_init.c (261): type error: pointer expected
e:\\lr\\22\\\\combined_22.c (5): 7 errors, not writing pre_cci.ci
这是什么问题,请各位指点,谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢 指针的概念都没有搞清楚。 参数定义不合法 char temp;
去掉试试看 回复 3# thirfing
版主为什么不能告诉人家怎么定义呢
你就多打几行子嘛 char hotelname;定义错了,char只有一个字节,8位,最多表示256个..4096超了 你把char放到最上面定义试一下估计就好了
页:
[1]