win32u: Make get_winproc_ptr() static.

This commit is contained in:
Zebediah Figura 2023-01-18 19:47:56 -06:00 committed by Alexandre Julliard
parent 4ccb65e230
commit 571f33cae6

View file

@ -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;