include: Fix a typo in _MSC_VER.
This commit is contained in:
parent
fc37ed94d8
commit
4dff2e7157
|
@ -429,7 +429,7 @@ typedef struct _MIDL_STUBLESS_PROXY_INFO
|
||||||
} MIDL_STUBLESS_PROXY_INFO, *PMIDL_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 */
|
/* Calling convention for returning structures/unions is different between Windows and gcc on i386 */
|
||||||
typedef LONG_PTR CLIENT_CALL_RETURN;
|
typedef LONG_PTR CLIENT_CALL_RETURN;
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -154,7 +154,7 @@ extern "C" {
|
||||||
# define DECLSPEC_EXPORT
|
# define DECLSPEC_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__)
|
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__)
|
||||||
# define DECLSPEC_HIDDEN
|
# define DECLSPEC_HIDDEN
|
||||||
#elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
|
#elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
|
||||||
# define DECLSPEC_HIDDEN __attribute__((visibility ("hidden")))
|
# define DECLSPEC_HIDDEN __attribute__((visibility ("hidden")))
|
||||||
|
|
Loading…
Reference in New Issue