| |||
| Home > Compiler Command-line Options > Command-line options > ‑‑export_all_vtbl, --no_export_all_vtbl | |||
This option controls how dynamic symbols are exported in C++.
Use the option --export_all_vtbl to export
all virtual function tables and RTTI for classes with a key function.
A key function is the first virtual function
of a class, in declaration order, that is not inline, and is not
pure virtual.
You can disable export for specific classes by using __declspec(notshared).