source:
branches/1.4x/third-party/libnatpmp/declspec.h
@
7095
Last change on this file since 7095 was 6967, checked in by charles, 14 years ago | |
---|---|
File size: 246 bytes |
Line | |
---|---|
1 | #ifndef __DECLSPEC_H__ |
2 | #define __DECLSPEC_H__ |
3 | |
4 | #if defined(WIN32) && !defined(STATICLIB) |
5 | #ifdef NATPMP_EXPORTS |
6 | #define LIBSPEC __declspec(dllexport) |
7 | #else |
8 | #define LIBSPEC __declspec(dllimport) |
9 | #endif |
10 | #else |
11 | #define LIBSPEC |
12 | #endif |
13 | |
14 | #endif |
15 |
Note: See TracBrowser
for help on using the repository browser.