winemac.drv: Fix a typo in _MSC_VER.

This commit is contained in:
Hermès Bélusca-Maïto 2014-03-25 18:46:13 +01:00 committed by Alexandre Julliard
parent c5bd5236b9
commit 7a7925c872
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@
#ifndef DECLSPEC_HIDDEN
# 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")))