Commit 8da21e08 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

user32: Move touch related functions to input.c.

parent 34099bba
......@@ -653,3 +653,106 @@ LRESULT WINAPI DefRawInputProc( RAWINPUT **data, INT data_count, UINT header_siz
return header_size == sizeof(RAWINPUTHEADER) ? 0 : -1;
}
/*****************************************************************************
* CloseTouchInputHandle (USER32.@)
*/
BOOL WINAPI CloseTouchInputHandle( HTOUCHINPUT handle )
{
FIXME( "handle %p stub!\n", handle );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/*****************************************************************************
* GetTouchInputInfo (USER32.@)
*/
BOOL WINAPI GetTouchInputInfo( HTOUCHINPUT handle, UINT count, TOUCHINPUT *ptr, int size )
{
FIXME( "handle %p, count %u, ptr %p, size %u stub!\n", handle, count, ptr, size );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/**********************************************************************
* IsTouchWindow (USER32.@)
*/
BOOL WINAPI IsTouchWindow( HWND hwnd, ULONG *flags )
{
FIXME( "hwnd %p, flags %p stub!\n", hwnd, flags );
return FALSE;
}
/*****************************************************************************
* RegisterTouchWindow (USER32.@)
*/
BOOL WINAPI RegisterTouchWindow( HWND hwnd, ULONG flags )
{
FIXME( "hwnd %p, flags %#lx stub!\n", hwnd, flags );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/*****************************************************************************
* UnregisterTouchWindow (USER32.@)
*/
BOOL WINAPI UnregisterTouchWindow( HWND hwnd )
{
FIXME( "hwnd %p stub!\n", hwnd );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/*****************************************************************************
* GetGestureInfo (USER32.@)
*/
BOOL WINAPI CloseGestureInfoHandle( HGESTUREINFO handle )
{
FIXME( "handle %p stub!\n", handle );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/*****************************************************************************
* GetGestureInfo (USER32.@)
*/
BOOL WINAPI GetGestureExtraArgs( HGESTUREINFO handle, UINT count, BYTE *args )
{
FIXME( "handle %p, count %u, args %p stub!\n", handle, count, args );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/*****************************************************************************
* GetGestureInfo (USER32.@)
*/
BOOL WINAPI GetGestureInfo( HGESTUREINFO handle, GESTUREINFO *ptr )
{
FIXME( "handle %p, ptr %p stub!\n", handle, ptr );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/*****************************************************************************
* GetGestureConfig (USER32.@)
*/
BOOL WINAPI GetGestureConfig( HWND hwnd, DWORD reserved, DWORD flags, UINT *count,
GESTURECONFIG *config, UINT size )
{
FIXME( "handle %p, reserved %#lx, flags %#lx, count %p, config %p, size %u stub!\n",
hwnd, reserved, flags, count, config, size );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/**********************************************************************
* SetGestureConfig (USER32.@)
*/
BOOL WINAPI SetGestureConfig( HWND hwnd, DWORD reserved, UINT count,
GESTURECONFIG *config, UINT size )
{
FIXME( "handle %p, reserved %#lx, count %u, config %p, size %u stub!\n",
hwnd, reserved, count, config, size );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
......@@ -440,35 +440,6 @@ BOOL WINAPI UnregisterSuspendResumeNotification(HPOWERNOTIFY handle)
return TRUE;
}
/*****************************************************************************
* GetGestureConfig (USER32.@)
*/
BOOL WINAPI GetGestureConfig( HWND hwnd, DWORD reserved, DWORD flags, UINT *count, GESTURECONFIG *config, UINT size )
{
FIXME("(%p %08lx %08lx %p %p %u): stub\n", hwnd, reserved, flags, count, config, size);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/**********************************************************************
* SetGestureConfig [USER32.@]
*/
BOOL WINAPI SetGestureConfig( HWND hwnd, DWORD reserved, UINT id, PGESTURECONFIG config, UINT size )
{
FIXME("(%p %08lx %u %p %u): stub\n", hwnd, reserved, id, config, size);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/**********************************************************************
* IsTouchWindow [USER32.@]
*/
BOOL WINAPI IsTouchWindow( HWND hwnd, PULONG flags )
{
FIXME("(%p %p): stub\n", hwnd, flags);
return FALSE;
}
/**********************************************************************
* IsWindowRedirectedForPrint [USER32.@]
*/
......
......@@ -76,6 +76,7 @@
@ stdcall CloseClipboard() NtUserCloseClipboard
@ stdcall CloseDesktop(long) NtUserCloseDesktop
@ stdcall CloseTouchInputHandle(long)
@ stdcall CloseGestureInfoHandle(long)
@ stdcall CloseWindow(long)
@ stdcall CloseWindowStation(long) NtUserCloseWindowStation
@ stdcall CopyAcceleratorTableA(long ptr long)
......@@ -304,6 +305,7 @@
@ stdcall GetFocus()
@ stdcall GetForegroundWindow() NtUserGetForegroundWindow
@ stdcall GetGestureConfig(long long long ptr ptr long)
@ stdcall GetGestureExtraArgs(long long ptr)
@ stdcall GetGestureInfo(long ptr)
@ stdcall GetGUIThreadInfo(long ptr) NtUserGetGUIThreadInfo
@ stdcall GetGuiResources(long long)
......
......@@ -1480,56 +1480,6 @@ LONG_PTR WINAPI SetWindowLongPtrA( HWND hwnd, INT offset, LONG_PTR newval )
#endif /* _WIN64 */
/*****************************************************************************
* RegisterTouchWindow (USER32.@)
*/
BOOL WINAPI RegisterTouchWindow(HWND hwnd, ULONG flags)
{
FIXME("(%p %08lx): stub\n", hwnd, flags);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/*****************************************************************************
* UnregisterTouchWindow (USER32.@)
*/
BOOL WINAPI UnregisterTouchWindow(HWND hwnd)
{
FIXME("(%p): stub\n", hwnd);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/*****************************************************************************
* CloseTouchInputHandle (USER32.@)
*/
BOOL WINAPI CloseTouchInputHandle(HTOUCHINPUT handle)
{
FIXME("(%p): stub\n", handle);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/*****************************************************************************
* GetTouchInputInfo (USER32.@)
*/
BOOL WINAPI GetTouchInputInfo(HTOUCHINPUT handle, UINT count, TOUCHINPUT *ptr, int size)
{
FIXME("(%p %u %p %u): stub\n", handle, count, ptr, size);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/*****************************************************************************
* GetGestureInfo (USER32.@)
*/
BOOL WINAPI GetGestureInfo(HGESTUREINFO handle, PGESTUREINFO ptr)
{
FIXME("(%p %p): stub\n", handle, ptr);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/*****************************************************************************
* GetWindowDisplayAffinity (USER32.@)
*/
BOOL WINAPI GetWindowDisplayAffinity(HWND hwnd, DWORD *affinity)
......
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