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.
我必须访问一个Dll里面的一个类的成员变量,我已经加载了dll,但是如何访问这个类的成员变量,我不想使用COM中使用的虚拟表概念。任何投入都将是可观的。
dllimport表示将导入实现:
dllimport
class __declspec(dllimport) YourClass { // ... declarations ... };
有用的链接:
HowTo:从 DLL 导出 C++ 类