mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
define WINE_UNICODE_API msvc compatible
svn path=/trunk/; revision=41690
This commit is contained in:
parent
9efabca05c
commit
5c86565676
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue