define WINE_UNICODE_API msvc compatible

svn path=/trunk/; revision=41690
This commit is contained in:
Christoph von Wittich 2009-06-29 17:53:26 +00:00
parent 9efabca05c
commit 5c86565676

View file

@ -45,7 +45,11 @@
#define isprintW iswprint
#ifndef WINE_UNICODE_API
#define WINE_UNICODE_API __attribute__((dllimport))
# if defined(_MSC_VER)
# define WINE_UNICODE_API __declspec(dllimport)
# else
# define WINE_UNICODE_API __attribute__((dllimport))
# endif
#endif
#ifndef __VALIST