error LNK2001: 无法解析的外部符号 __imp__RegEnumKeyExA@32
错误:
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")
error LNK2001: 无法解析的外部符号 __imp__RegEnumKeyExA@32的更多相关文章
- error LNK2001: 无法解析的外部符号
1.错误描述 error LNK2001: 无法解析的外部符号 "__declspec(dllimport) void __cdecl PadSystem::Private::printQS ...
- c++中调用python脚本提示 error LNK2001: 无法解析的外部符号 __imp_Py_Initialize等错误的解决方法
最近项目中需要实现一个服务器宕机后短信提醒的功能,个人觉得在使用Python 写http请求这块很方便,发短信这块就使用了python,但是c++程序中调用这个脚本时,编译不通过,提示如下错误: er ...
- C++工程编译之“error LNK2001: 无法解析的外部符号”
今天一整天都在折腾“error LNK2001: 无法解析的外部符号”,就在头疼不已的时候,总算是找到问题原因了:各个动态链接库的编译方式必须统一才行,要不然很容易对库函数的引用产生冲突.简单来说就是 ...
- error LNK2001: 无法解析的外部符号 _IID_IDirectDraw7
工程使用了DirectDraw,编译出错 error LNK2001: 无法解析的外部符号 _IID_IDirectDraw7 解决办法是吧dxguid.lib添加到工程中,把lib所在目录添加到工程 ...
- error LNK2001: 无法解析的外部符号 "public: char * __thiscall
error LNK2001: 无法解析的外部符号 "public: char * __thiscall CamPinPadCtrl::KeysConvert(unsigned long,ch ...
- 【转】strmbasd.lib(dllentry.obj) : error LNK2001: 无法解析的外部符号"int g_cTemplates"
加入了DirectShow的基类链接库后,如果此时编译就会出现以下编译错误: strmbasd.lib(wxutil.obj) : error LNK2019: 无法解析的外部符号 __imp__ti ...
- 无法链接glew的解决办法-编译开源库出现: error LNK2001: 无法解析的外部符号
无法链接glew的解决办法-编译开源库出现: error LNK2001: 无法解析的外部符号 参考官方配置指南:http://glew.sourceforge.net/install.html 1. ...
- error LNK2001: 无法解析的外部符号 _H5T_NATIVE_DOUBLE_g
最近在编译一个C++动态链接库时遇到一个奇怪的问题,我们基于GsTL实现了GIS地统计分析中的半变异函数分析以及 克吕格插值,GsTL在计算半变异函数时依赖HDF5库,当添加了HDF5的头文件.lib ...
- gSoap的“error LNK2001: 无法解析的外部符号 _namespaces”解决方法
错误 2 error LNK2001: 无法解析的外部符号 _namespaces 解决方法: 1. 在工程中定义 WITH_NONAMESPACES 宏 2.尝试 "#include &q ...
随机推荐
- Unicode数据类型的是是非非(转)
转:http://cio.chinabyte.com/344/9002344.shtml 在SQL Server数据库中,数据类型主要分为两类,分别为Unicode数据类型与非Unicode数据类型. ...
- java.lang.ArrayIndexOutOfBoundsException 异常分析及解决
参考:http://blog.csdn.net/javaeeteacher/article/details/4485834 这是一个非常常见的异常,从名字上看是数组下标越界错误,解决方法就是查看为什么 ...
- Procedure or function 'pu_usr_User' expects parameter '@WhiteIp', which was not supplied.
遇到这个问题,是因为存储过程的参数,设置默认值写错了. 错误写法 @WhiteIp NVARCHAR(MAX) NULL, Stored procedure with default paramete ...
- <读书笔记>《JS DOM编程艺术》
2016/03/04 12:00 第一二章:JS的简史以及基本语法 1.P11 2.variable 3.P13 等于 4.P13 5.P14 转义字符 6.关联数组不是一个好习惯 7.P18 ...
- POJ 1797 Heavy Transportation (Dijkstra)
题目链接:POJ 1797 Description Background Hugo Heavy is happy. After the breakdown of the Cargolifter pro ...
- QT5.2 Assistant-设置应用程序图标
在Qt助手(assistant.exe)搜索关键字"Setting the Application Icon"就可以看到在各种平台设置Qt程序图标的方法,包括QT支持的Win ...
- Spring Enable高级应用及原理
Enable* 之前的文章用到了一些Enable*开头的注解,比如EnableAsync.EnableScheduling.EnableAspectJAutoProxy.EnableCaching等, ...
- 37-python基础-python3-字典的常用方法-keys()-values()-items()
有 3 个字典方法,它们将返回类似列表的值,分别对应于字典的键.值和键-值对:keys().values()和 items(). 这些方法返回的值不是真正的列表,它们不能被修改,没有append()方 ...
- Cas简介(一)
Cas的全称是Centeral Authentication Service,是对单点登录SSO(Single Sign On)的一种实现.其由Cas Server和Cas Client两部分组成,C ...
- linux子网掩码优化配置
prefix prefix是前缀的意思,这里指子网掩码的位数. 如255.255.255.0则在ifcfg-eth0的配置文件中:PREFIX=24而NETMASK与PREFIX的作用是一样的,都是配 ...