开发平台(Platform): (Ex: Win10, Linux, ...)
Windows10
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
Visual Studio 2017
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
N/A
问题(Question):
主管从别的team那边拿到了一包DLL的source code
说要更改里面某一个函式的功能
我看了半天改好之后也成功rebuild出 .dll & .lib
想说要自己写测试exe去呼叫才发现这包dll没有entry point那支cpp的header
档案结构大概是
A.cpp (DLLMain在这)
A.def
A.sln (还有其他VS相关档案略过)
B.cpp
B.h
C.cpp
C.h
A.cpp include B.h & C.h
A.def写了
LIBRARY A
EXPORTS
Fun_a
Fun_b
Fun_c
喂入的资料(Input):
N/A
预期的正确结果(Expected Output):
能够让我呼叫dll里面的Fun_a、Fun_b、Fun_c
错误结果(Wrong Output):
没有A.h不知道怎么include dll
可能是我不太能理解def的机制???
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
N/A
补充说明(Supplement):
请指教 谢谢QQ