Vidalia
0.2.15
|
00001 #ifndef __DECLSPEC_H__ 00002 #define __DECLSPEC_H__ 00003 00004 #if defined(WIN32) && !defined(STATICLIB) 00005 #ifdef MINIUPNP_EXPORTS 00006 #define LIBSPEC __declspec(dllexport) 00007 #else 00008 #define LIBSPEC __declspec(dllimport) 00009 #endif 00010 #else 00011 #define LIBSPEC 00012 #endif 00013 00014 #endif 00015