2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Add missing dllexport/dllimport.

[SVN r24974]
This commit is contained in:
Vladimir Prus
2004-09-08 14:56:04 +00:00
parent 7a393b0b03
commit 9f4ff41fc9
2 changed files with 8 additions and 0 deletions

View File

@@ -7,6 +7,13 @@
// software is provided "as is" without express or implied warranty, and
// with no claim as to its suitability for any purpose.
#ifdef _WIN32
#ifdef LIBX_SOURCE
__declspec(dllexport)
#else
__declspec(dllimport)
#endif
#endif
class TestLibX
{
public:

View File

@@ -8,6 +8,7 @@
// with no claim as to its suitability for any purpose.
#define LIBX_SOURCE
#include <libx/test_libx.h>
TestLibX::TestLibX()