1 |
foucault |
27 |
#ifndef HypergraphLib_PlatformH
|
2 |
|
|
#define HypergraphLib_PlatformH
|
3 |
|
|
|
4 |
|
|
//----------------------------------------------------------------------------
|
5 |
|
|
// Microsoft Windows 2000/XP platform
|
6 |
|
|
//----------------------------------------------------------------------------
|
7 |
|
|
#if defined(__BORLANDC__)
|
8 |
|
|
|
9 |
|
|
#if defined(BUILT_DLL_OUTIL)
|
10 |
|
|
#define HYPERGRAPHLIB_ITEM __declspec(dllexport)
|
11 |
|
|
#else
|
12 |
|
|
#define HYPERGRAPHLIB_ITEM __declspec(dllimport)
|
13 |
|
|
#endif
|
14 |
|
|
|
15 |
|
|
#else
|
16 |
|
|
|
17 |
|
|
#define HYPERGRAPHLIB_ITEM
|
18 |
|
|
|
19 |
|
|
#endif
|
20 |
|
|
|
21 |
|
|
|
22 |
|
|
|
23 |
|
|
#endif
|