- Move inline function to local header.

svn path=/trunk/; revision=42726
This commit is contained in:
James Tabor
2009-08-16 01:48:35 +00:00
parent 36512fc9c3
commit 7b35054d70
2 changed files with 8 additions and 7 deletions
@@ -15,4 +15,12 @@ VOID FASTCALL MessageCleanup(VOID);
#define WM_ALTTABACTIVE 0x0029
#define WM_SETVISIBLE 0x0009
static __inline BOOL
IsCallProcHandle(IN WNDPROC lpWndProc)
{
/* FIXME - check for 64 bit architectures... */
return ((ULONG_PTR)lpWndProc & 0xFFFF0000) == 0xFFFF0000;
}
#endif /* LIB_USER32_INCLUDE_MESSAGE_H */
@@ -1220,13 +1220,6 @@ IntCallWindowProcA(BOOL IsAnsiProc,
}
}
static BOOL __inline
IsCallProcHandle(IN WNDPROC lpWndProc)
{
/* FIXME - check for 64 bit architectures... */
return ((ULONG_PTR)lpWndProc & 0xFFFF0000) == 0xFFFF0000;
}
/*
* @implemented