Generic base for all plug-in instances in C++
- 警告
- This differs from the ak_wwise_plugin_base_instance, as C++ classes have a virtual table as their first member. It's important to make the distinction between the two by specifically doing a static_cast between the C version and the C++ version, and not a mere reinterpret_cast or a C-style cast. As such, it is expected to instantiate a plug-in in C++, and return C pointers back to the instance structures with a different base address.
在文件 PluginDef.h 第 518 行定义.