
Hello,
I am creating a DLL using the VisualC++ 8sp1, which statically links to
Boost.Library, and also to another static library, which links to
Boost.Library statically too.
In the export section of the built DLL I see, among the few public
functions which it should export, hundreds of exported functions like the
ones below. I would really like to export the symbols the DLL defines as
exported, and not anything else which is unexpectly exported, like the
ones shown below:
boost::archive::detail::oserializer ::oserializer boost::archive::detail::oserializer ::oserializer boost::archive::detail::oserializer ::oserializer In my static library, which statically link to the Boost.Serialization
library, I have the following code which explicitly instantiate some
template type on a set of a priori known datatypes:
template MYLIB_API struct sqy::Vector2<int>;
template MYLIB_API struct sqy::Vector2<float>;
template MYLIB_API struct sqy::Vector2<double>;
template MYLIB_API struct sqy::Vector2