博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
error LNK2001: 无法解析的外部符号 __imp__RegEnumKeyExA@32
阅读量:6072 次
发布时间:2019-06-20

本文共 1270 字,大约阅读时间需要 4 分钟。

错误:
error LNK2001: 无法解析的外部符号 __imp__OpenProcessToken@12
error LNK2001: 无法解析的外部符号 __imp__LookupPrivilegeValueA@12
error LNK2001: 无法解析的外部符号 __imp__AdjustTokenPrivileges@24
error LNK2001: 无法解析的外部符号 __imp__OpenSCManagerA@12
error LNK2001: 无法解析的外部符号 __imp__CloseServiceHandle@4
error LNK2001: 无法解析的外部符号 __imp__OpenServiceA@12
error LNK2001: 无法解析的外部符号 __imp__QueryServiceStatus@8
error LNK2001: 无法解析的外部符号 __imp__ControlService@12
error LNK2001: 无法解析的外部符号 __imp__DeleteService@4
error LNK2001: 无法解析的外部符号 __imp__CreateServiceA@52
error LNK2001: 无法解析的外部符号 __imp__StartServiceA@12
error LNK2001: 无法解析的外部符号 __imp__RegOpenKeyExA@20
error LNK2001: 无法解析的外部符号 __imp__RegQueryValueExA@24
error LNK2001: 无法解析的外部符号 __imp__RegCloseKey@4
error LNK2001: 无法解析的外部符号 __imp__RegCreateKeyA@12
error LNK2001: 无法解析的外部符号 __imp__RegCreateKeyExA@36
error LNK2001: 无法解析的外部符号 __imp__RegSetValueExA@24
error LNK2001: 无法解析的外部符号 __imp__RegEnumKeyA@16
error LNK2001: 无法解析的外部符号 __imp__RegDeleteKeyA@8
error LNK2001: 无法解析的外部符号 __imp__RegDeleteValueA@8
error LNK2001: 无法解析的外部符号 __imp__RegQueryInfoKeyA@48
error LNK2001: 无法解析的外部符号 __imp__RegEnumKeyExA@32
原因:
本来程序的编译选项选择的是:使用标准windows库,当改为在静态库中使用MFC后就出现了上面的错误
解决方法
代码中添加依赖库
#pragma comment (lib,"Advapi32.lib")

转载于:https://www.cnblogs.com/vcerror/p/4289017.html

你可能感兴趣的文章
python 递归
查看>>
一个想法(续二):换个角度思考如何解决IT企业招聘难的问题!
查看>>
tomcat指定配置文件路径方法
查看>>
linux下查看各硬件型号
查看>>
对象合成复用之策略模式
查看>>
epoll的lt和et模式的实验
查看>>
Flux OOM实例
查看>>
Shell: 测试网卡当前速率的脚本
查看>>
ThinkPHP3.2使用DRDS,无法使用SHOW COLUMNS
查看>>
Python初遇坑
查看>>
状态dp
查看>>
Linux内核学习之三-进程的调度
查看>>
crontab命令
查看>>
RedHat Enterprise Linux 6配置Xmanager 4
查看>>
用户需求:只能在浏览器中浏览excel文件,不允许user下载excel文件
查看>>
ruby去消费kafka的数据并灌入hbase,git项目位置
查看>>
mysql-proxy win7 下实现读写分离
查看>>
毕设问题小记——No Dialect mapping for JDBC type:-1错误
查看>>
TCP长连接与短连接的区别
查看>>
ftp+samba+quota+rsync+inotify
查看>>