char *CodeFile(char *FileText,int length,int Key) { int i=0; for(i=0;i<length;i++) { FileText[i] += Key; }出现error C2040: 'EncodeFile' : 'char *(char *,int ,int )' differs in levels of indirection from 'int ()'
时间: 2024-04-29 09:19:55 浏览: 82
asp.net多图片上传实现程序代码
这个错误提示表明在调用函数 `EncodeFile` 时,传递的参数类型与函数声明的参数类型不匹配。具体来说,函数 `EncodeFile` 声明的参数类型是 `char *`,`int`,`int`,但是实际调用时传递的参数类型可能有误。
请检查一下代码,确认在调用 `EncodeFile` 函数时,传递的三个参数类型都正确,并且按照声明的顺序传递。如果你需要更多的帮助,请提供更多的代码和上下文信息。
阅读全文