user32: Add a stub implementation of IsTouchWindow.

oldstable
Hans Leidekker 2014-11-27 12:17:26 +01:00 committed by Alexandre Julliard
parent a4a48d3fc8
commit 9023a95e5b
3 changed files with 12 additions and 1 deletions

View File

@ -727,7 +727,16 @@ BOOL WINAPI SetGestureConfig( HWND hwnd, DWORD reserved, UINT id, PGESTURECONFIG
{
FIXME("(%p %08x %u %p %u): stub\n", hwnd, reserved, id, config, size);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
return FALSE;
}
/**********************************************************************
* IsTouchWindow [USER32.@]
*/
BOOL WINAPI IsTouchWindow( HWND hwnd, PULONG flags )
{
FIXME("(%p %p): stub\n", hwnd, flags);
return FALSE;
}
static const WCHAR imeW[] = {'I','M','E',0};

View File

@ -445,6 +445,7 @@
@ stdcall IsMenu(long)
@ stdcall IsRectEmpty(ptr)
# @ stub IsServerSideWindow
@ stdcall IsTouchWindow(long ptr)
@ stdcall IsWinEventHookInstalled(long)
@ stdcall IsWindow(long)
@ stdcall IsWindowEnabled(long)

View File

@ -3735,6 +3735,7 @@ WINUSERAPI BOOL WINAPI IsHungAppWindow(HWND);
WINUSERAPI BOOL WINAPI IsIconic(HWND);
WINUSERAPI BOOL WINAPI IsMenu(HMENU);
WINUSERAPI BOOL WINAPI IsRectEmpty(const RECT*);
WINUSERAPI BOOL WINAPI IsTouchWindow(HWND,PULONG);
WINUSERAPI BOOL WINAPI IsWinEventHookInstalled(DWORD);
WINUSERAPI BOOL WINAPI IsWindow(HWND);
WINUSERAPI BOOL WINAPI IsWindowEnabled(HWND);