wine/include windef.h

Alexandre Julliard julliard at wine.codeweavers.com
Tue Nov 8 10:13:21 CST 2005


ChangeSet ID:	21174
CVSROOT:	/opt/cvs-commit
Module name:	wine
Changes by:	julliard at winehq.org	2005/11/08 10:13:21

Modified files:
	include        : windef.h 

Log message:
	Add an argument to all uses of the __ONLY_IN_WINELIB macro (spotted by
	Berend Reitsma).

Patch: http://cvs.winehq.org/patch.py?id=21174

Old revision  New revision  Changes     Path
 1.100         1.101         +8 -8       wine/include/windef.h

Index: wine/include/windef.h
diff -u -p wine/include/windef.h:1.100 wine/include/windef.h:1.101
--- wine/include/windef.h:1.100	8 Nov 2005 16:13:21 -0000
+++ wine/include/windef.h	8 Nov 2005 16:13:21 -0000
@@ -103,30 +103,30 @@ extern "C" {
 #endif
 
 #ifndef near
-#define near        __ONLY_IN_WINELIB()
+#define near        __ONLY_IN_WINELIB(/* nothing */)
 #endif
 #ifndef far
-#define far         __ONLY_IN_WINELIB()
+#define far         __ONLY_IN_WINELIB(/* nothing */)
 #endif
 #ifndef _near
-#define _near       __ONLY_IN_WINELIB()
+#define _near       __ONLY_IN_WINELIB(/* nothing */)
 #endif
 #ifndef _far
-#define _far        __ONLY_IN_WINELIB()
+#define _far        __ONLY_IN_WINELIB(/* nothing */)
 #endif
 #ifndef NEAR
-#define NEAR        __ONLY_IN_WINELIB()
+#define NEAR        __ONLY_IN_WINELIB(/* nothing */)
 #endif
 #ifndef FAR
-#define FAR         __ONLY_IN_WINELIB()
+#define FAR         __ONLY_IN_WINELIB(/* nothing */)
 #endif
 
 #ifndef _MSC_VER
 # ifndef _declspec
-#  define _declspec(x)    __ONLY_IN_WINELIB()
+#  define _declspec(x)    __ONLY_IN_WINELIB(/* nothing */)
 # endif
 # ifndef __declspec
-#  define __declspec(x)   __ONLY_IN_WINELIB()
+#  define __declspec(x)   __ONLY_IN_WINELIB(/* nothing */)
 # endif
 #endif
 



More information about the wine-cvs mailing list