我正在尝试从那里使用Qt5构建中的库:链接
我已将.lib
和.h
文件添加到我的 qmake 文件中,如下所示:
INCLUDEPATH += C:xxxxxxPrivoxyinclude
LIBS += -LC:xxxxxxPrivoxylib -lLibPrivoxy
并尝试在我的.cpp
文件中调用StartPrivoxy
函数:
#include <QCoreApplication>
#include "WinPrivoxy/libprivoxy.h"
QString file = QCoreApplication::applicationDirPath() + "/privoxy.conf";
StartPrivoxy(file.toLocal8Bit().data());
当我点击编译时,编译器给了我这个错误:
error LNK2019: unresolved external symbol "__declspec(dllimport) int __stdcall StartPrivoxy(char *)" (__imp_?StartPrivoxy@@YGHPAD@Z)
.lib
文件的.h
和.c
文件是:
// libprivoxy.h
#ifndef _LIBPRIVOXY_EXPORT_H
#define _LIBPRIVOXY_EXPORT_H
#ifdef LIBPRIVOXY_EXPORTS
#define LIBPRIVOXY_API __declspec(dllexport)
#else
#define LIBPRIVOXY_API __declspec(dllimport)
#endif
LIBPRIVOXY_API int __stdcall StartPrivoxy(char *config_full_path);
LIBPRIVOXY_API void __stdcall StopPrivoxy();
LIBPRIVOXY_API int __stdcall IsRunning();
#endif
// libprivoxy.c
#include "libprivoxy.h"
#include "miscutil.h"
#include <assert.h>
char g_privoxy_config_full_path[1024] = { 0 };
extern HMODULE g_hLibPrivoxyModule = NULL;
extern int g_terminate;
extern void close_privoxy_listening_socket();
LIBPRIVOXY_API int __stdcall StartPrivoxy(char *config_full_path)
{
g_terminate = 0;
strcpy_s(g_privoxy_config_full_path, 1024, config_full_path);
// start privoxy
WinMain( NULL,NULL,NULL, 0);
return 0;
}
LIBPRIVOXY_API void __stdcall StopPrivoxy()
{
g_terminate = 1;
close_privoxy_listening_socket();
}
LIBPRIVOXY_API int __stdcall IsRunning()
{
return 1 == g_terminate ? 0 : 1;
}
我在Windows 10 18363.592
上使用Qt 14.0.0
和Visual Studio 2017 Enterprise
根据 https://doc.qt.io/qtcreator/creator-project-qmake-libraries.html 和 https://doc.qt.io/qt-5/third-party-libraries.html 您的qmake设置是准确的(也许添加DEPENDPATH += ...
(。
问题似乎是导入.dll
,因为通常当链接dll(https://social.msdn.microsoft.com/Forums/vstudio/en-US/d94f6af3-e330-4962-a150-078da57ee5d0/error-lnk2019-unresolved-external-symbol-quotdeclspecdllimport-public-thiscall?forum=vcgeneral(出现问题时会抛出此外部符号未解决的错误
在搜索 privoxy git 时,我找不到.dll
.您是否为privoxy编译了.dll并将其放在指定的路径中?(用 C/C++ 编译一个 DLL,然后从另一个程序调用它(
据我了解,您想使用 libprivoxy 作为源代码。然后,您不需要导入不存在的.dll,因为您没有编译它。
请注意,静态链接和动态链接之间存在差异,据我了解,您希望静态链接(.dll
是动态链接库的缩写(