错误:

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的更多相关文章

  1. error LNK2001: 无法解析的外部符号

    1.错误描述 error LNK2001: 无法解析的外部符号 "__declspec(dllimport) void __cdecl PadSystem::Private::printQS ...

  2. c++中调用python脚本提示 error LNK2001: 无法解析的外部符号 __imp_Py_Initialize等错误的解决方法

    最近项目中需要实现一个服务器宕机后短信提醒的功能,个人觉得在使用Python 写http请求这块很方便,发短信这块就使用了python,但是c++程序中调用这个脚本时,编译不通过,提示如下错误: er ...

  3. C++工程编译之“error LNK2001: 无法解析的外部符号”

    今天一整天都在折腾“error LNK2001: 无法解析的外部符号”,就在头疼不已的时候,总算是找到问题原因了:各个动态链接库的编译方式必须统一才行,要不然很容易对库函数的引用产生冲突.简单来说就是 ...

  4. error LNK2001: 无法解析的外部符号 _IID_IDirectDraw7

    工程使用了DirectDraw,编译出错 error LNK2001: 无法解析的外部符号 _IID_IDirectDraw7 解决办法是吧dxguid.lib添加到工程中,把lib所在目录添加到工程 ...

  5. error LNK2001: 无法解析的外部符号 "public: char * __thiscall

    error LNK2001: 无法解析的外部符号 "public: char * __thiscall CamPinPadCtrl::KeysConvert(unsigned long,ch ...

  6. 【转】strmbasd.lib(dllentry.obj) : error LNK2001: 无法解析的外部符号"int g_cTemplates"

    加入了DirectShow的基类链接库后,如果此时编译就会出现以下编译错误: strmbasd.lib(wxutil.obj) : error LNK2019: 无法解析的外部符号 __imp__ti ...

  7. 无法链接glew的解决办法-编译开源库出现: error LNK2001: 无法解析的外部符号

    无法链接glew的解决办法-编译开源库出现: error LNK2001: 无法解析的外部符号 参考官方配置指南:http://glew.sourceforge.net/install.html 1. ...

  8. error LNK2001: 无法解析的外部符号 _H5T_NATIVE_DOUBLE_g

    最近在编译一个C++动态链接库时遇到一个奇怪的问题,我们基于GsTL实现了GIS地统计分析中的半变异函数分析以及 克吕格插值,GsTL在计算半变异函数时依赖HDF5库,当添加了HDF5的头文件.lib ...

  9. gSoap的“error LNK2001: 无法解析的外部符号 _namespaces”解决方法

    错误 2 error LNK2001: 无法解析的外部符号 _namespaces 解决方法: 1. 在工程中定义 WITH_NONAMESPACES 宏 2.尝试 "#include &q ...

随机推荐

  1. IDEA2019.1.3最新破解方式

    版本2019.1.3 1.下载破解JAR,放入IDEA的bin文件夹中     链接:https://pan.baidu.com/s/1N1BHeJ0-mmFIWbrh5h4k-g     提取码:g ...

  2. python re模块常用的正则表达式

    '.'     默认匹配除\n之外的任意一个字符,若指定flag DOTALL,则匹配任意字符,包括换行 '^'     匹配字符开头,若指定flags MULTILINE,这种也可以匹配上(r&qu ...

  3. 90、Tensorflow实现分布式学习,多台电脑,多个GPU 异步试学习

    ''' Created on 2017年5月28日 @author: weizhen ''' import time import tensorflow as tf from tensorflow.e ...

  4. eclispse指针变成十字型

    按ATL+Shift+A可以十字和箭头切换.

  5. java %d %n \n

    Java中,%d和%f分别用来表示输出时,替换整型输出和浮点型输出的占位符. 如: int a=28; float b = 13.0f; System.out.printf("整数是:%d% ...

  6. Linux(二)—— Linux配置及指令

    目录 Linux配置及指令 一.linux中常用软件的安装 二.主机名和网络 1.修改主机名 2.设置网络 三.关闭防火墙 1.检查防火墙是否开启 2.清除策略 3.永久关闭第一个防火墙 4.关闭第二 ...

  7. log4j日志格式化

    Apache log4j 提供了各种布局对象,每一个对象都可以根据各种布局格式记录数据.另外,也可以创建一个布局对象格式化测井数据中的特定应用的方法. 所有的布局对象 - Appender对象收到 L ...

  8. JPA单向和双向关系

    单向关系 @JoinColumn 双向关系 @OneToMany @ManyToMany mappedBy

  9. mysql全局权限账户%登录不上ERROR 1045 (28000): Access denied for user 'zzq'@'localhost' (using password: YES)

    mysql中有新建了一个%(允许所有主机连接)和ALL权限的账户.但是竟然连不上.用root或者其他localhost的用户却可以登录.首先检查下防火墙打开了没,可以用service iptables ...

  10. HDU 1261 字串数(排列组合)

    字串数 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submiss ...