From ef6d5df1e765617ffb1d327d89c9bb086e57e880 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 8 Nov 2005 16:13:21 +0000 Subject: [PATCH] Add an argument to all uses of the __ONLY_IN_WINELIB macro (spotted by Berend Reitsma). --- include/windef.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/windef.h b/include/windef.h index 9b60b436772..337649447a8 100644 --- a/include/windef.h +++ b/include/windef.h @@ -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