Commit 9023a95e authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

user32: Add a stub implementation of IsTouchWindow.

parent a4a48d3f
......@@ -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};
......
......@@ -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)
......
......@@ -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);
......
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