1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef BHO_PREDEF_LIBRARY_STD_MSVC_H
- #define BHO_PREDEF_LIBRARY_STD_MSVC_H
- #include <asio2/bho/predef/library/std/_prefix.h>
- #include <asio2/bho/predef/version_number.h>
- #include <asio2/bho/predef/make.h>
-
- #define BHO_LIB_STD_MSVC BHO_VERSION_NUMBER_NOT_AVAILABLE
- #if defined(_MSVC_STL_VERSION)
- # undef BHO_LIB_STD_MSVC
- # define BHO_LIB_STD_MSVC BHO_PREDEF_MAKE_10_VVR_0PPPPP(_MSVC_STL_VERSION, _MSVC_STL_UPDATE)
- #endif
- #if BHO_LIB_STD_MSVC
- # define BHO_LIB_STD_MSVC_AVAILABLE
- #endif
- #define BHO_LIB_STD_MSVC_NAME "Microsoft stdlib"
- #endif
- #include <asio2/bho/predef/detail/test.h>
- BHO_PREDEF_DECLARE_TEST(BHO_LIB_STD_MSVC, BHO_LIB_STD_MSVC_NAME)
|