include: Fix a typo in _MSC_VER.

oldstable
Dmitry Timoshkov 2014-03-24 16:08:16 +09:00 committed by Alexandre Julliard
parent fc37ed94d8
commit 4dff2e7157
2 changed files with 2 additions and 2 deletions

View File

@ -429,7 +429,7 @@ typedef struct _MIDL_STUBLESS_PROXY_INFO
} MIDL_STUBLESS_PROXY_INFO, *PMIDL_STUBLESS_PROXY_INFO;
#if defined(__i386__) && !defined(__MSC_VER) && !defined(__MINGW32__) && !defined(__CYGWIN__)
#if defined(__i386__) && !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__CYGWIN__)
/* Calling convention for returning structures/unions is different between Windows and gcc on i386 */
typedef LONG_PTR CLIENT_CALL_RETURN;
#else

View File

@ -154,7 +154,7 @@ extern "C" {
# define DECLSPEC_EXPORT
#endif
#if defined(__MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__)
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__)
# define DECLSPEC_HIDDEN
#elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
# define DECLSPEC_HIDDEN __attribute__((visibility ("hidden")))