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 ... };
便利なリンク:
方法: DLL から C++ クラスをエクスポートする