Module: wine Branch: master Commit: 571f33cae67076d44569a94d8849f1c55a624e03 URL: https://gitlab.winehq.org/wine/wine/-/commit/571f33cae67076d44569a94d8849f1c...
Author: Zebediah Figura zfigura@codeweavers.com Date: Wed Jan 18 19:47:56 2023 -0600
win32u: Make get_winproc_ptr() static.
---
dlls/win32u/class.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/win32u/class.c b/dlls/win32u/class.c index 9f3b4251e65..396e2285797 100644 --- a/dlls/win32u/class.c +++ b/dlls/win32u/class.c @@ -108,7 +108,7 @@ static WINDOWPROC *find_winproc( WNDPROC func, BOOL ansi )
/* return the window proc for a given handle, or NULL for an invalid handle, * or WINPROC_PROC16 for a handle to a 16-bit proc. */ -WINDOWPROC *get_winproc_ptr( WNDPROC handle ) +static WINDOWPROC *get_winproc_ptr( WNDPROC handle ) { UINT index = LOWORD(handle); if ((ULONG_PTR)handle >> 16 != WINPROC_HANDLE) return NULL;