Module: wine Branch: master Commit: 4ccb65e23015f54178ff6f58ac89a7671f28caa3 URL: https://gitlab.winehq.org/wine/wine/-/commit/4ccb65e23015f54178ff6f58ac89a76...
Author: Zebediah Figura zfigura@codeweavers.com Date: Wed Jan 18 19:47:17 2023 -0600
win32u: Make DrawTextW() hidden.
---
dlls/win32u/font.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/win32u/font.c b/dlls/win32u/font.c index c3ba1a9a377..742a31b59a4 100644 --- a/dlls/win32u/font.c +++ b/dlls/win32u/font.c @@ -7083,7 +7083,7 @@ BOOL WINAPI NtGdiGetCharWidthInfo( HDC hdc, struct char_width_info *info ) /*********************************************************************** * DrawTextW (win32u.so) */ -INT WINAPI DrawTextW( HDC hdc, const WCHAR *str, INT count, RECT *rect, UINT flags ) +INT WINAPI DECLSPEC_HIDDEN DrawTextW( HDC hdc, const WCHAR *str, INT count, RECT *rect, UINT flags ) { struct draw_text_params *params; ULONG ret_len, size;