Commit 571f33ca authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

win32u: Make get_winproc_ptr() static.

parent 4ccb65e2
...@@ -108,7 +108,7 @@ static WINDOWPROC *find_winproc( WNDPROC func, BOOL ansi ) ...@@ -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, /* 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. */ * 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); UINT index = LOWORD(handle);
if ((ULONG_PTR)handle >> 16 != WINPROC_HANDLE) return NULL; if ((ULONG_PTR)handle >> 16 != WINPROC_HANDLE) return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment