Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为的库,它包含如下所示Serial.dll的文件Serial.def:
Serial.dll
Serial.def
EXPORTS ValidateSerial GenerateSerial
我想GenerateSerial在我的 C++ Win32 应用程序中导入该函数。我在互联网上搜索了有关使用 DLL 的主题,但我不明白......有人可以帮助我吗?
GenerateSerial
您提供的信息仅告诉两个功能名称。LoadLibrary您可以通过和获取他们的地址GetProcAddress。但是要使用它们,您需要知道正确的签名,以及参数和返回值的规则。
LoadLibrary
GetProcAddress
如果没有文档(或 .h 文件),您将无法走得太远。