- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图从 C++ Win32 控制台应用程序调用空 C dll 中的函数 long *Test(int)。该 dll 称为 QSIWrapperUMeLt.dll。当我尝试构建控制台应用程序时,我得到以下输出:
adding resource. type:MANIFEST, name:1, language:0x0409, flags:0x30, size:406
1>TestPlatform.obj : error LNK2019: unresolved external symbol _Test referenced in function _wmain
1>C:\Users\Deven Bryant\Desktop\temp version\TestPlatform\Debug\TestPlatform.exe : fatal error LNK1120: 1 unresolved externals
1>
1>Build FAILED.
这是我为了从我的控制台应用程序调用我的 QSIWrapperUMeLt dll 所做的;在 dll 中,我在函数定义中包含了 extern "C"
和 __declspec(dllexport)
属性。 dll 和控制台应用程序都设置为为 Win32 构建。我已经确保在项目设置中将 dll 设置为编译为 c 代码。在控制台应用程序中,我#include
d QSIWrapperUMeLt.h
文件并将__declspec(dllexport)
更改为__declspec(dllimport)
使用预处理器指令。我还使用 #pragma comment(lib, "DLLTutorial.lib")
链接到 dll。 QSIWrapperUMeLt 库文件、头文件和 dll 位于我的控制台应用程序的项目文件夹中。
下面我提供了 dll 的头文件、控制台应用程序 cpp 文件以及在 QSIWrapperUMeLt.dll 上运行时 dumpbin 检测到的符号表和导出函数。
此外,我已经尝试了显式链接路径,但是当我调用加载库时它返回一个空指针。
任何关于我做错了什么的想法都将不胜感激。
QSIWrapperUMELt.h
#include <Windows.h>
//#pragma comment(lib, "DLLTutorial.lib")
#ifdef EXPORT
#define DECLSPEC __declspec(dllexport)
#else
#define DECLSPEC __declspec(dllimport);
#endif
#define BOOL int
#define TRUE 1
#define FLSE 0
typedef enum
{
initialize = 0,
setup,
capture,
temperature,
close,
getimagedata
} CallStates;
typedef struct ReturnedValues
{
BOOL initialized, imagereadyflag, exposuredone;
long** imagedata;
double Temperature;
}ReturnedValues;
typedef struct CameraData
{
short Mode;
short Binning;
int Exposure;
int Top;
int Left;
int Height; //ROIH
int Width; //ROIW
int CoolerSetpoint;
int Temperature;
}CameraData;
typedef void (*callFunction)(CameraData camdata, ReturnedValues *retvals);
DECLSPEC ReturnedValues *retvals;
callFunction pcallFunction;
HINSTANCE hlib;
CameraData camdata;
#ifdef __cplusplus
extern "C"
{
#endif
DECLSPEC ReturnedValues entryPoint();
DECLSPEC long *Test(int length);
#ifdef __cplusplus
}
#endif
TestPlatform.cpp(控制台应用程序)我只是想从此调用 Test()
#include "stdafx.h"
#include <Windows.h>
#include <iostream>
#include <conio.h>
#include <strsafe.h>
#define IMPORT
//#define EXPLICIT
using namespace std;
#ifndef EXPLICIT
#include "QSIWrapperUMeLt.h"
//#include "QSIAccessor.h"
#pragma comment(lib, "QSIWrapperUMeLt.lib")
//#pragma comment(lib, "QSIAccessorUMEmpty.lib")
#endif
#ifdef EXPLICIT
typedef long *(*Test)(int length);
HINSTANCE hinstlib;
Test pTest;
#endif
void ErrorExit(LPTSTR lpszFunction);
int _tmain(int argc, _TCHAR* argv[])
{
int temp = 1;
long *data;
#ifdef EXPLICIT
hinstlib = LoadLibrary((LPCWSTR)"QSIWrapperUMeLt.dll");
if(hinstlib)
{
#endif
int i;
cout << "hinstlib was successfully initialized" << endl;
#ifdef EXPLICIT
pTest = (Test)GetProcAddress(hinstlib, (LPCSTR)"Test");
data = pTest(10000);
#else
data = Test(1000);
//callFunction(CameraData *camdata, ReturnedValues *retvals);
#endif
for(i = 0; i < 20; i++)
{
cout << data[i] << endl;
}
#ifdef EXPLICIT
}
else
{
ErrorExit(TEXT("LoadLibrary"));
}
FreeLibrary(hinstlib);
#endif
getch();
return 0;
}
void ErrorExit(LPTSTR lpszFunction)
{
// Retrieve the system error message for the last-error code
LPVOID lpMsgBuf;
LPVOID lpDisplayBuf;
DWORD dw = GetLastError();
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR) &lpMsgBuf,
0, NULL );
// Display the error message and exit the process
lpDisplayBuf = (LPVOID)LocalAlloc(LMEM_ZEROINIT,
(lstrlen((LPCTSTR)lpMsgBuf) + lstrlen((LPCTSTR)lpszFunction) + 40) * sizeof(TCHAR));
StringCchPrintf((LPTSTR)lpDisplayBuf,
LocalSize(lpDisplayBuf) / sizeof(TCHAR),
TEXT("%s failed with error %d: %s"),
lpszFunction, dw, lpMsgBuf);
MessageBox(NULL, (LPCTSTR)lpDisplayBuf, TEXT("Error"), MB_OK);
LocalFree(lpMsgBuf);
LocalFree(lpDisplayBuf);
ExitProcess(dw);
}
QSIWrapperUMeLt 符号表
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin>dumpbin /SYMBOLS "C:\Users\...\Desktop\temp version\C_C++libs\QSIWrapperUMeLt\Debug\QSIWrapperUMeLt.li
b"
Microsoft (R) COFF/PE Dumper Version 10.00.30319.01
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file C:\Users\Deven Bryant\Desktop\temp version\C_C++libs\QSIWrapperUMeLt\Debug\QSIWrapperUMeLt.lib
File Type: LIBRARY
COFF SYMBOL TABLE
000 009C766F ABS notype Static | @comp.id
001 00000000 SECT2 notype External | __IMPORT_DESCRIPTOR_QSIWrapperUMeLt
002 C0000040 SECT2 notype Section | .idata$2
003 00000000 SECT3 notype Static | .idata$6
004 C0000040 UNDEF notype Section | .idata$4
005 C0000040 UNDEF notype Section | .idata$5
006 00000000 UNDEF notype External | __NULL_IMPORT_DESCRIPTOR
007 00000000 UNDEF notype External | ¦QSIWrapperUMeLt_NULL_THUNK_DATA
String Table Size = 0x62 bytes
COFF SYMBOL TABLE
000 009C766F ABS notype Static | @comp.id
001 00000000 SECT2 notype External | __NULL_IMPORT_DESCRIPTOR
String Table Size = 0x1D bytes
COFF SYMBOL TABLE
000 009C766F ABS notype Static | @comp.id
001 00000000 SECT2 notype External | ¦QSIWrapperUMeLt_NULL_THUNK_DATA
String Table Size = 0x25 bytes
Summary
DB .debug$S
14 .idata$2
14 .idata$3
4 .idata$4
4 .idata$5
14 .idata$6
QSIWrapperUMeLt 导出
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin>dumpbin /EXPORTS "C:\Users\...\Desktop\temp version\C_C++libs\QSIWrapperUMeLt\Debug\QSIWrapperUMeLt.dl
l"
Microsoft (R) COFF/PE Dumper Version 10.00.30319.01
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file C:\Users\Deven Bryant\Desktop\temp version\C_C++libs\QSIWrapperUMeLt\Debug\QSIWrapperUMeLt.dll
File Type: DLL
Section contains the following exports for QSIWrapperUMeLt.dll
00000000 characteristics
500E089F time date stamp Mon Jul 23 19:29:51 2012
0.00 version
1 ordinal base
3 number of functions
3 number of names
ordinal hint RVA name
1 0 00011127 Test = @ILT+290(_Test)
2 1 0001102D entryPoint = @ILT+40(_entryPoint)
3 2 00017580 retvals = _retvals
Summary
1000 .data
1000 .idata
2000 .rdata
1000 .reloc
1000 .rsrc
4000 .text
10000 .textbss
最佳答案
当未定义 EXPLICIT 时,我看不出问题的原因。但是,这是 LoadLibrary 参数中的问题:
(LPCWSTR)"QSIWrapperUMeLt.dll"
ANSI 字符串“QSIWrapperUMeLt.dll”是一个字节数组,包含一堆单字节字符,以单字节 NUL 结尾。当在函数参数等表达式中使用时,表达式将转换为指向第一个字符的指针,类型为 char* 或 LPSTR 的指针。
您将指针转换为类型 LPCWSTR。但是,指针仍然指向一堆单字节字符,以单字节 NUL 结尾。
既然你想要一个 Unicode 字符串,你可以这样做:
L"QSIWrapperUMeLt.dll"
或者在将来可能需要您的代码时与 ANSI 或 Unicode 兼容:
_T("QSIWrapperUMeLt.dll")
关于c++ - LNK2019 : Unresolved external when calling to a function in a C dll from a C++ console Application (no CLR),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11659423/
已经有几个关于捕获或重定向 console.log 的问题: redirect Javascript syntax errors and console.log to somewhere else C
console.log(String(console.log('Not undefined')) === 'undefined'); console.log(String(console.log('N
我知道这是一个新手错误,但我不知道如何修复它。 public static void main (String args[]){ Console kitty = System.console(); S
我正在使用 Visual Studio 2015。 我试图打印一些语句只是为了跟踪一个非常长时间运行的测试。当使用 VSTest.Console 和/Logger:trx 时,调试输出(无论我们使用
这个问题在这里已经有了答案: Accessing console and devtools of extension's background.js (8 个回答) 5年前关闭。 我的 Chrome
我在括号中收到此错误。 我想强调一个事实,这是我第二次打开 JS 文件。 正如我强调的那样,我还想强调一个事实,即我不知道 Eslint 和 node.js 是什么。 StackOverflow 和其
我按照文档中的描述安装了 Drupal Console Launcher: curl https://drupalconsole.com/installer -L -o drupal.phar mv
Console.WriteLine() 和有什么区别和Trace.WriteLine() ? 最佳答案 从“调试”的角度来看这些。 我们开始使用 Console.WriteLine() 进行调试 后来
我一直在尝试连接到 serial console of a Raspberry Pi 3 with Android Things使用USB to TTL cable从我的 Linux (Ubuntu)
namespace Pro { class ErrorLog { public ErrorLog(RenderWindow app) {
以下代码是一个众所周知的示例,用于显示调试版本和发布版本之间的区别: using System; using System.Threading; public static class Program
if (open_date) { open_date = get_date_from_string(open_date); window.console && cons
在 Xcode 中工作时,我通常只为控制台打开一个单独的窗口,以便我可以看到尽可能多的输出行。我今天刚刚更新到 Xcode 12,在更新之前,您可以将编辑器 Pane 和控制台 Pane 之间的分隔线
在 Google Play Console 上,在所有应用程序的第一页,它会显示已安装的受众和用户获取。 我知道已安装的受众是在他们的设备上安装我的应用程序的受众。但什么是用户获取?通常,用户获取的数
Qt Quick uses qDebug执行日志记录,其中标准 Javascript 日志记录方法映射到 Qt 日志类型 console.log() -> qDebug() console.deb
Qt Quick uses qDebug执行日志记录,其中标准 Javascript 日志记录方法映射到 Qt 日志类型 console.log() -> qDebug() console.deb
我有以下代码: bool loop = true; LongbowWorkerThread Worker = new LongbowWorkerThread(); Th
我遇到了这两个 API,用于在 C# 的简单控制台应用程序中读取用户的输入: System.Console.ReadLine() System.Console.In.ReadLine() 这是一个我试
我是编程和 js 的新手,我正在尝试学习 javascript 的关键。 var obj1 = { name: 'rawn', fn: function() { con
using System; namespace ConsoleApplication1 { class Program { static void Main(strin
我是一名优秀的程序员,十分优秀!