File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / miniupnpc / declspec.h
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Jul 22 00:36:10 2013 UTC (10 years, 10 months ago) by misho
Branches: miniupnpc, elwix, MAIN
CVS tags: v1_8p0, v1_8, HEAD
1.8

    1: #ifndef DECLSPEC_H_INCLUDED
    2: #define DECLSPEC_H_INCLUDED
    3: 
    4: #if defined(_WIN32) && !defined(STATICLIB)
    5: 	#ifdef MINIUPNP_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: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>