gpt4 book ai didi

C调用函数类型错误

转载 作者:行者123 更新时间:2023-11-30 18:15:12 25 4
gpt4 key购买 nike

我正在尝试编译此代码,该代码从“libcfmapi.so”调用 func 来解密“cfg”文件

#include <stdlib.h>
#include <stdio.h>
int restorebackup(const char *tmp_cfg_name,const char *xml_cfg_name);
int ATP_CFM_ExtCustomImportEncryptedUserCfgFile(const char *tmp_cfg_name);
int main(int argc, char **argv)
{
int ret;
if(argc < 3)
{
printf("specify temp config file name.\n");
exit(1);
}
ret=restorebackup(argv[1],argv[2]);
return ret;
}
int restorebackup(const char *tmp_cfg_name,const char *xml_cfg_name)
{
int ret=0;
//ret = ATP_CFM_ExtDigVerifyFile(tmp_cfg_name,tmp_cfg_name);
if(ret != 0)
{
printf("Verify File failed.\n");
return ret;
}
ret = ATP_CFM_ExtCustomImportEncryptedUserCfgFile(tmp_cfg_name);
return ret;
}

但出现有关 func 类型声明的错误

root@kali:~/debian-qemu# gcc  h.c   -o demo
/tmp/ccVbt5NT.o: In function `restorebackup':
h.c:(.text+0x8c): undefined reference to `ATP_CFM_ExtCustomImportEncryptedUserCfgFile'
collect2: error: ld returned 1 exit status

感谢任何帮助

最佳答案

您收到此错误的原因是您没有链接到所需的库 libcfmapi.so

这不是您期望在 Debian 系统中找到的库,因为它是您尝试破解的 BT 设备所独有的。

简而言之 - 从您的设备获取库,针对从设备中提取的库交叉编译到设备架构,应该没问题。

关于C调用函数类型错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39062844/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com