include fix to get winesources to compile again under MSVC

Rolf Kalbermatter rolf.kalbermatter at citeng.com
Fri Sep 19 05:11:56 CDT 2003


Changelog
  - include/windef.h
    This change allows again compilation of a lot of the core files under MSVC.
    For some reasons the MSVC (6.0) precompiler does not consider __declspec to
    be defined although the compiler knows exactly what to do with it.

Rolf Kalbermatter 

Index: include/windef.h
===================================================================
RCS file: /home/wine/wine/include/windef.h,v
retrieving revision 1.86
diff -u -r1.86 windef.h
--- include/windef.h	28 Aug 2003 21:43:35 -0000	1.86
+++ include/windef.h	16 Sep 2003 22:14:36 -0000
@@ -116,7 +116,7 @@
 #ifndef _declspec
 #define _declspec(x)    __ONLY_IN_WINELIB()
 #endif
-#ifndef __declspec
+#if !defined(__declspec) && !defined(_MSC_VER)
 #define __declspec(x)   __ONLY_IN_WINELIB()
 #endif
 





More information about the wine-patches mailing list