(win32) Don't use dllimport/dllexport (part 2)

This commit is contained in:
Mukund Sivaraman 2008-09-05 14:32:09 +00:00
parent b8b46aeb12
commit 6feb76ba37
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#ifndef __DECLSPEC_H__
#define __DECLSPEC_H__
/*
#if defined(WIN32) && !defined(STATICLIB)
#ifdef NATPMP_EXPORTS
#define LIBSPEC __declspec(dllexport)
@ -8,8 +9,11 @@
#define LIBSPEC __declspec(dllimport)
#endif
#else
*/
#define LIBSPEC
/*
#endif
*/
#endif