2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 05:22:45 +00:00

Added BOOST_PYTHON_MODULE_INIT

[SVN r9475]
This commit is contained in:
Dave Abrahams
2001-03-07 03:56:25 +00:00
parent 041409d715
commit a350b666fa

View File

@@ -57,4 +57,10 @@
# define BOOST_CSTD_ std
# endif
#ifdef _WIN32
# define BOOST_PYTHON_MODULE_INIT(name) extern "C" __declspec(dllexport) void init##name()
#else
# define BOOST_PYTHON_MODULE_INIT(name) extern "C" void init##name()
#endif
#endif // CONFIG_DWA052200_H_