diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-11 15:32:19 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-12 15:07:18 +0100 |
commit | 203595a1b5b9f9ad02ee6fa7008dae17459a6315 (patch) | |
tree | 4fc4bebad2cf09abd9d957cbe53ebf7f070517b6 /sal/systools | |
parent | 11921d2269ec993167d81a5ed47ea6c14fc1a5f6 (diff) |
-Werror,-Winconsistent-dllimport
> sal/systools/win32/uwinapi/legacy.c(21,14) : error: 'GetShortPathNameW' redeclared without 'dllimport' attribute: previous 'dllimport' ignored [-Werror,-Winconsistent-dllimport]
> DWORD WINAPI GetShortPathNameW(LPCWSTR lpszLongPath,LPWSTR lpszShortPath,DWORD cchBuffer)
> ^
> C:/PROGRA~2/WI3CF2~1/8.1/include/um\fileapi.h(780,1) : note: previous declaration is here
> GetShortPathNameW(
> ^
> C:/PROGRA~2/WI3CF2~1/8.1/include/um\fileapi.h(776,1) : note: previous attribute is here
> WINBASEAPI
> ^
> C:/PROGRA~2/WI3CF2~1/8.1/include/shared\apisetcconv.h(22,20) : note: expanded from macro 'WINBASEAPI'
> #define WINBASEAPI DECLSPEC_IMPORT
> ^
> C:/PROGRA~2/WI3CF2~1/8.1/include/um\winnt.h(175,36) : note: expanded from macro 'DECLSPEC_IMPORT'
> #define DECLSPEC_IMPORT __declspec(dllimport)
> ^
Change-Id: Ifb0d3179bca9da192afc0af4e731a799f6d392b2
Diffstat (limited to 'sal/systools')
-rw-r--r-- | sal/systools/win32/uwinapi/legacy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/systools/win32/uwinapi/legacy.c b/sal/systools/win32/uwinapi/legacy.c index c2ca5601c23c..e88c7524ed22 100644 --- a/sal/systools/win32/uwinapi/legacy.c +++ b/sal/systools/win32/uwinapi/legacy.c @@ -14,7 +14,7 @@ #pragma warning(disable:4273) // inconsistent dll linkage #endif -#if defined(_MSC_VER) && (_MSC_VER >= 1900) +#if (defined(_MSC_VER) && (_MSC_VER >= 1900)) || defined __clang__ // older versions use uwinapi.def file for export __declspec(dllexport) #endif |