当前位置: 代码迷 >> 综合 >> error LNK2019: 无法解析的外部符号 __imp_ShellExecuteA,该符号在函数
  详细解决方案

error LNK2019: 无法解析的外部符号 __imp_ShellExecuteA,该符号在函数

热度:76   发布时间:2023-12-16 05:43:23.0

解决方法:

在stdafx.h文件中添加。

#include <windows.h>
#include <shellapi.h>
#pragma comment(lib,"shell32.lib")

 

  相关解决方案