我正在尝试从 vb.net 获取 DllExport 到非托管 c++ 工作。
我正在使用Robert Giesecke 的 Unmanaged Exports with Visual Studio 2012 并尝试遵循这个非常有用的提示。我通过在我的 *.cpp 和 *.h 文件所在的目录中的构建后操作从 .Net 项目中复制 dll。
我检查了我的 dll,dumpbin /EXPORTS Nugget.Discovery.dll
它告诉我有出口:
File Type: DLL
Section contains the following exports for \Nugget.Discovery.dll
00000000 characteristics
52554A05 time date stamp Wed Oct 09 14:20:21 2013
0.00 version
0 ordinal base
2 number of functions
2 number of names
ordinal hint RVA name
0 0 0000532E StartAnnouncing
1 1 0000533E StopAnnouncing
Summary
2000 .reloc
4000 .rsrc
2000 .sdata
4000 .text
但是如果我尝试将它导入到 cpp 文件中
#import "Nugget.Discovery.dll"
void StartAnnouncing(int serial);
我在尝试编译后收到一个 IntelliSense 错误和一个错误:
IntelliSense: cannot open source file "Debug/Nugget.Discovery.tlh"
error C1083: Cannot open type library file: 'nugget.discovery.dll': Fehler beim Laden der Typbibliothek/DLL.
知道我做错了什么吗?
最好的祝福!斯特凡