[PATCH] win32u: Remove no longer used macro.
Signed-off-by: Huw Davies <huw(a)codeweavers.com> --- dlls/win32u/ntgdi_private.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dlls/win32u/ntgdi_private.h b/dlls/win32u/ntgdi_private.h index 7f35707c4f2..29f1240a7b7 100644 --- a/dlls/win32u/ntgdi_private.h +++ b/dlls/win32u/ntgdi_private.h @@ -89,10 +89,6 @@ typedef struct tagDC RECT bounds; /* Current bounding rect */ } DC; -/* Certain functions will do no further processing if the driver returns this. - Used by mfdrv for example. */ -#define GDI_NO_MORE_WORK 2 - /* Rounds a floating point number to integer. The world-to-viewport * transformation process is done in floating point internally. This function * is then used to round these coordinates to integer values. -- 2.23.0
Signed-off-by: Mohamad Al-Jaf <mohamadaljaf(a)gmail.com> --- Not sure if it's acceptable for anyone to sign-off on a patch. I was able to verify this macro is indeed no longer being used in the codebase.
From the root directory of wine-git: $ grep -rnw . -e 'GDI_NO_MORE_WORK' ./dlls/win32u/ntgdi_private.h:94:#define GDI_NO_MORE_WORK 2 $
participants (2)
-
Huw Davies -
Mohamad Al-Jaf